a52f542cd2d6e4e115126a4c21a3318004523516
[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="{{ map(lambda opt, val: opt + "=" + val, (install.kernel_cmdline or {}).items()).join(" ") }}"'
7   when: install is defined and install.kernel_cmdline is defined
8   notify: update grub