ansible-ops-management/tasks/grub.yml

6 lines
196 B
YAML

---
- name: Add kernel boot options to all kernels and default config
ansible.builtin.command: /usr/sbin/grubby --update-kernel=ALL --args "{{ grub_boot_options }}"
changed_when: "1 != 1"
...