9 lines
263 B
YAML
9 lines
263 B
YAML
---
|
|
# handlers file for grub
|
|
#
|
|
- name: Generate Config
|
|
ansible.builtin.command:
|
|
cmd: "{{ grub_updatecmd[ansible_os_family | lower] }}"
|
|
become: true
|
|
changed_when: true # handler, assume this cmd is realizing changes/making more
|
|
listen: update_grubcfg
|