call update-grub after changing config
authorChristian Pointner <equinox@realraum.at>
Fri, 11 Jan 2019 00:13:36 +0000 (01:13 +0100)
committerChristian Pointner <equinox@realraum.at>
Sat, 12 Jan 2019 22:48:22 +0000 (23:48 +0100)
ansible/roles/base/handlers/main.yml
ansible/roles/base/tasks/07grub.yml

index a86fcde..920db82 100644 (file)
@@ -8,3 +8,6 @@
   service:
     name: openntpd
     state: restarted
+
+- name: update grub
+  command: update-grub
index dbc9b32..d413ff6 100644 (file)
@@ -5,3 +5,4 @@
     regexp: '^#?GRUB_CMDLINE_LINUX='
     line: 'GRUB_CMDLINE_LINUX="{% for opt,val in (install.kernel_cmdline | default({})).items() %}{{ opt }}={{ val }}{% if not loop.last %} {% endif %}{% endfor %}"'
   when: install is defined and install.kernel_cmdline is defined
+  notify: update grub