diff --git a/defaults/main.yml b/defaults/main.yml index 1378e19..68f96c6 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -2,7 +2,6 @@ nextcloud_admin_user: systemausfall.org nextcloud_admin_pw: admin nextcloud_db_password: "{{ lookup('password', '/tmp/{{ instance.name }}_db_pwd length=42 chars=ascii_letters,digits') }}" -nextcloud_munin_user_password: "{{ lookup('password', '/tmp/{{ instance.name }}_munin_pwd length=42 chars=ascii_letters,digits') }}" nextcloud_dl_url: https://download.nextcloud.com/server/releases nextcloud_root: /data/nextcloud nextcloud_install_path: "{{ nextcloud_root }}/{{ instance.name }}" diff --git a/handlers/main.yml b/handlers/main.yml index f8bc152..bda725b 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -15,11 +15,6 @@ state: reloaded delegate_to: "{{ gateway_host }}" -- name: restart munin-node - service: - name: munin-node - state: restarted - - name: stop php-fpm-socket command: systemctl stop php-fpm@*.socket diff --git a/tasks/common.yml b/tasks/common.yml index 6f5763d..9ef8cca 100644 --- a/tasks/common.yml +++ b/tasks/common.yml @@ -71,14 +71,3 @@ src: ../roles/nextcloud/templates/nextcloud-updater.j2 dest: "/usr/local/bin/nextcloud-updater" mode: 0755 - -- name: "common | Erstelle munin-Verzeichnis" - file: - path: "{{ local_munin_path }}" - state: directory - -- name: "common | Kopiere munin-Daten" - get_url: - url: https://raw.githubusercontent.com/munin-monitoring/contrib/master/plugins/nextcloud/nextcloud_ - dest: "{{ local_munin_path }}/nextcloud_" - mode: 0755