ansible-ops-management/tasks/grub.yml

6 lines
180 B
YAML
Raw Normal View History

2022-02-27 03:19:20 +00:00
---
- name: Add kernel boot options to all kernels and default config
command: /usr/sbin/grubby --update-kernel=ALL --args "{{ grub_boot_options }}"
changed_when: "1 != 1"
...