2020-11-03 05:30:19 -06:00
|
|
|
#!/usr/bin/env ansible-playbook
|
|
|
|
# vim:ft=ansible:
|
|
|
|
---
|
|
|
|
- name: configure grub
|
|
|
|
block:
|
|
|
|
- name: template out grub config
|
2022-06-16 23:45:29 -05:00
|
|
|
ansible.builtin.template: src=grub.conf dest=/etc/default/grub mode=0644
|
2020-11-03 05:30:19 -06:00
|
|
|
notify: grub mkconfig
|