From 329215b3c93c0383ea0ff001d10b89075cd6eb9c Mon Sep 17 00:00:00 2001 From: phil Date: Sat, 25 Feb 2023 23:42:38 +0100 Subject: [PATCH] nextcloud: Entferne doppelte handler --- handlers/main.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/handlers/main.yml b/handlers/main.yml index 14298dd..ad99105 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -15,16 +15,11 @@ state: reloaded delegate_to: "{{ gateway_host }}" -- name: stop php-fpm-socket - command: systemctl stop php-fpm@*.socket - -- name: stop php-fpm-service - command: systemctl stop php-fpm@*.service - -- name: start php-fpm-socket - command: systemctl start php-fpm@*.socket --all - - name: restart fail2ban service: name: fail2ban state: restarted + +- name: Systemd daemon-reload + ansible.builtin.systemd: + daemon_reload: true