ansible: Make install.kernel_cmdline a list
[noc.git] / ansible / roles / base / tasks / 07grub.yml
1 ---
2 - name: set kernel command line options
3   lineinfile:
4     path: /etc/default/grub
5     regexp: '^#?GRUB_CMDLINE_LINUX='
6     line: 'GRUB_CMDLINE_LINUX="{{ (install.kernel_cmdline or []).join(" ") }}"'
7   when: install is defined and install.kernel_cmdline is defined
8   notify: update grub