mono-infrastructure/ansible/playbooks/tasks/grub.yml

6 lines
180 B
YAML
Raw Normal View History

2020-12-13 18:41:26 +00:00
---
2021-04-02 03:16:58 +00:00
- name: Add kernel boot options to all kernels and default config
command: /usr/sbin/grubby --update-kernel=ALL --args "{{ grub_boot_options }}"
2021-04-02 07:56:50 +00:00
changed_when: "1 != 1"
...