mirror of
https://github.com/nicolabs/ansible-role-grub.git
synced 2025-09-21 00:31:42 +02:00
13 lines
246 B
YAML
13 lines
246 B
YAML
---
|
|
# handlers file for grub
|
|
- name: update grub
|
|
command: "{{ grub_update_grub_command }}"
|
|
when:
|
|
- ansible_virtualization_type != "docker"
|
|
- ansible_virtualization_type != "container"
|
|
notify:
|
|
- reboot
|
|
|
|
- name: reboot
|
|
reboot:
|