diff options
author | Peter Mikus <peter.mikus@protonmail.ch> | 2024-12-04 09:12:26 +0100 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2024-12-04 08:41:52 +0000 |
commit | c573ac71a79bb430be3ad8d2d8e1447119dc9af0 (patch) | |
tree | 9516796357b688a2b57a88e678e74c311716e685 /fdio.infra.ansible/roles/aws/handlers/main.yaml | |
parent | 8b3aa8ab8c7860002dda31805e19a9939bb03201 (diff) |
feat(infra): AWS -> Nobleoper-241125
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch>
Change-Id: I95f2945597eeacb01e04ae0b40dc2bba667dcf91
(cherry picked from commit 0ebc52457569ad77cfa5b1c322d0d28baeea9777)
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 |