diff --git a/handlers/.main.yaml.swp b/handlers/.main.yaml.swp new file mode 100644 index 0000000..44f1bad Binary files /dev/null and b/handlers/.main.yaml.swp differ diff --git a/handlers/main.yaml b/handlers/main.yaml new file mode 100644 index 0000000..6998953 --- /dev/null +++ b/handlers/main.yaml @@ -0,0 +1,5 @@ +--- +- name: Restart sshd + ansible.builtin.service: + name: sshd + state: restarted diff --git a/tasks/template_config.yaml b/tasks/template_config.yaml index 3291702..2359043 100644 --- a/tasks/template_config.yaml +++ b/tasks/template_config.yaml @@ -13,13 +13,8 @@ mode: '0644' become: true register: sshd_config_file - -- name: Restart service - ansible.builtin.systemd: - name: sshd - enabled: true - state: restarted - when: sshd_config_file.changed + notify: + - Restart sshd - name: Write banner file ansible.builtin.template: