Replace sshd restart task with handler

This commit is contained in:
Corbin Bartsch 2022-09-06 12:00:57 -04:00
parent 3cb2c49955
commit 5087ccd9b3
Signed by: coredotbin
GPG Key ID: 32D3B80A08D93212
3 changed files with 7 additions and 7 deletions

BIN
handlers/.main.yaml.swp Normal file

Binary file not shown.

5
handlers/main.yaml Normal file
View File

@ -0,0 +1,5 @@
---
- name: Restart sshd
ansible.builtin.service:
name: sshd
state: restarted

View File

@ -13,13 +13,8 @@
mode: '0644' mode: '0644'
become: true become: true
register: sshd_config_file register: sshd_config_file
notify:
- name: Restart service - Restart sshd
ansible.builtin.systemd:
name: sshd
enabled: true
state: restarted
when: sshd_config_file.changed
- name: Write banner file - name: Write banner file
ansible.builtin.template: ansible.builtin.template: