ansible-role-grub/handlers/main.yml
2020-05-18 13:51:01 +02:00

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: