From 84d210cfabe5b81a06333737191c6cd78f536217 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 23 Aug 2023 21:35:28 +0300 Subject: [PATCH] roles/common: re-format handlers Use the newer Ansible format. --- roles/common/handlers/main.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/roles/common/handlers/main.yml b/roles/common/handlers/main.yml index 110385d..4d8d07e 100644 --- a/roles/common/handlers/main.yml +++ b/roles/common/handlers/main.yml @@ -2,19 +2,26 @@ # ansible.builtin.file: roles/common/handlers/main.yml - name: reload sshd - ansible.builtin.systemd: name={{ sshd_service_name }} state=reloaded + ansible.builtin.systemd: + name: "{{ sshd_service_name }}" + state: reloaded - name: reload sysctl command: sysctl -p /etc/sysctl.conf - name: reload systemd - ansible.builtin.systemd: daemon_reload=true + ansible.builtin.systemd: + daemon_reload: true - name: restart nftables - ansible.builtin.systemd: name=nftables state=restarted + ansible.builtin.systemd: + name: nftables + state: restarted # 2021-09-28: note to self to keep fail2ban at the end, as handlers are executed # in the order they are defined, not in the order they are listed in the task's # notify statement and we must restart fail2ban after updating the firewall. - name: restart fail2ban - ansible.builtin.systemd: name=fail2ban state=restarted + ansible.builtin.systemd: + name: fail2ban + state: restarted