From 5087ccd9b3604ae4aae6d7172f02c3781dc422d5 Mon Sep 17 00:00:00 2001 From: Corbin Bartsch Date: Tue, 6 Sep 2022 12:00:57 -0400 Subject: [PATCH] Replace sshd restart task with handler --- handlers/.main.yaml.swp | Bin 0 -> 12288 bytes handlers/main.yaml | 5 +++++ tasks/template_config.yaml | 9 ++------- 3 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 handlers/.main.yaml.swp create mode 100644 handlers/main.yaml diff --git a/handlers/.main.yaml.swp b/handlers/.main.yaml.swp new file mode 100644 index 0000000000000000000000000000000000000000..44f1bad096bee3f92848200510ccd5266178310a GIT binary patch literal 12288 zcmeI&Jx;?g6bJBEB*cV3Ft8d}NzxW1svH1`0SQHdwQ>@tHAVd^^ ze$q>lUWP%-gn$1_BU(00bZa0SG_<0uX=z1Rwx`KPVt`qT3Ck7tZ?s|NQ*_#r+S?H_lhi zdi;^|i4y?<2tWV=5P$##AOHafKmY;|fWWT=gt!?i6AQiopAWOj6nZo)bg9COufva2 zPJ+XE=~XPO;uq`Nk48@TTRo3!+6(nzI@6`++w)G@Yn`c>0@2hZ&D^Fw2m<;BUAk1X literal 0 HcmV?d00001 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: