17 lines
473 B
YAML
17 lines
473 B
YAML
|
- name: custom grub configuration for timeout and reboot halt
|
||
|
template:
|
||
|
src: templates/50_custom.j2
|
||
|
dest: /etc/grub.d/50_custom
|
||
|
mode: '0775'
|
||
|
notify: [ 'Update GRUB' ]
|
||
|
|
||
|
# TODO: add special case if plymouth is used
|
||
|
- name: let the system boot quietly
|
||
|
lineinfile:
|
||
|
dest: /etc/default/grub
|
||
|
state: present
|
||
|
regexp: '^(GRUB_CMDLINE_LINUX_DEFAULT=")'
|
||
|
line: '\1{{ system.grub.boot_options}}"'
|
||
|
backrefs: yes
|
||
|
notify: [ 'Update GRUB' ]
|