blob: d2f8f5cb9535b0a3ca277ba28dd82df594b5efb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
# file roles/performance_tuning/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
|