diff options
Diffstat (limited to 'fdio.infra.ansible/roles/aws/handlers/main.yaml')
-rw-r--r-- | fdio.infra.ansible/roles/aws/handlers/main.yaml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/fdio.infra.ansible/roles/aws/handlers/main.yaml b/fdio.infra.ansible/roles/aws/handlers/main.yaml index bc160a3263..b9680b10ea 100644 --- a/fdio.infra.ansible/roles/aws/handlers/main.yaml +++ b/fdio.infra.ansible/roles/aws/handlers/main.yaml @@ -1,25 +1,25 @@ --- -# file: roles/aws/handlers/main.yaml +# file: handlers/main.yaml -- name: Reload systemd-modules +- name: "Reload systemd-modules" systemd: name: "systemd-modules-load" state: "restarted" tags: - reload-systemd-modules -- name: Update GRUB - ansible.builtin.command: update-grub +- name: "Update GRUB" + ansible.builtin.command: "update-grub" tags: - update-grub -- name: Reboot Server +- name: "Reboot Server" ansible.builtin.reboot: reboot_timeout: 3600 tags: - reboot-server -- name: Restart SSHd +- name: "Restart SSHd" ansible.builtin.service: - name: sshd + name: "sshd" state: restarted |