ansible-role-grub/handlers/main.yml

13 lines
204 B
YAML
Raw Normal View History

2020-05-18 13:51:01 +02:00
---
# handlers file for grub
2020-05-18 13:51:01 +02:00
- name: update grub
command: "{{ grub_update_grub_command }}"
when:
- ansible_connection != "docker"
2020-06-24 11:54:00 +02:00
notify:
2020-05-18 13:51:01 +02:00
- reboot
- name: reboot
ansible.builtin.reboot: