mirror of
https://github.com/nicolabs/ansible-role-grub.git
synced 2026-04-10 04:20:49 +02:00
13 lines
204 B
YAML
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:
|