ansible-ops-management/tasks/grub.yml

6 lines
196 B
YAML
Raw Permalink Normal View History

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