Files
ansible-role-common/tasks/grub.yml
2022-03-14 22:51:48 +13:00

26 lines
680 B
YAML

---
- name: RHEL6 | Set boot_timeout/delay for GRUB
ini_file:
path: /boot/grub/grub.conf
section: null
option: timeout
value: "{{ common_grub_timeout }}"
state: present
no_extra_spaces: yes
when: "ansible_os_family == 'RedHat' and ansible_distribution_major_version == '6'"
tags:
- grub
- name: RHEL7 | Set boot_timeout/delay for GRUB
ini_file:
path: /etc/default/grub
section: null
option: GRUB_TIMEOUT
value: "{{ common_grub_timeout }}"
no_extra_spaces: yes
when: "ansible_os_family == 'RedHat' and ansible_distribution_major_version > '6'"
notify:
- Check if grub.cfg exists
- Update GRUB
tags:
- grub