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
|
2021-07-31 20:13:26 -05:00
|
|
|
template: src=grub.conf dest=/etc/default/grub mode=0644
|
2020-11-03 05:30:19 -06:00
|
|
|
notify: grub mkconfig
|