blob: d92ca0ed419f21daabeb3eab36379a970870e293 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
# file handlers/main.yaml
- name: "Update GRUB"
ansible.builtin.command: update-grub
tags:
- update-grub
- name: "Reboot Server"
ansible.builtin.reboot:
reboot_timeout: 3600
tags:
- reboot-server
|