ansible-role-grub/handlers/main.yml

13 lines
204 B
YAML

---
# handlers file for grub
- name: update grub
command: "{{ grub_update_grub_command }}"
when:
- ansible_connection != "docker"
notify:
- reboot
- name: reboot
ansible.builtin.reboot: