9 lines
214 B
YAML
9 lines
214 B
YAML
#!/usr/bin/env ansible-playbook
|
|
# vim:ft=ansible:
|
|
---
|
|
- name: configure grub
|
|
block:
|
|
- name: template out grub config
|
|
template: src=grub.conf dest=/etc/default/grub mode=0644
|
|
notify: grub mkconfig
|