From 231456269b9c9d7dadb68f919b180aa54c65a134 Mon Sep 17 00:00:00 2001 From: Clintchiz Date: Wed, 17 Sep 2025 11:30:20 +0530 Subject: [PATCH] Add reboot-ubuntu-server.yaml --- reboot-ubuntu-server.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 reboot-ubuntu-server.yaml diff --git a/reboot-ubuntu-server.yaml b/reboot-ubuntu-server.yaml new file mode 100644 index 0000000..0dff452 --- /dev/null +++ b/reboot-ubuntu-server.yaml @@ -0,0 +1,10 @@ +--- +- name: Reboot Ubuntu server + hosts: all + become: yes + + tasks: + - name: Reboot the remote server + ansible.builtin.reboot: + reboot_timeout: 600 + post_reboot_delay: 30 \ No newline at end of file