diff --git a/mint.yml b/mint.yml index 18a5d2d..e87b88b 100644 --- a/mint.yml +++ b/mint.yml @@ -75,6 +75,15 @@ args: removes: /etc/systemd/system/multi-user.target.wants/dhcpcd.service + - name: /etc/default/grub nonquiet nosplash + ansible.builtin.lineinfile: + path: /etc/default/grub + regexp: '^GRUB_CMDLINE_LINUX_DEFAULT=.*$' + line: "GRUB_CMDLINE_LINUX_DEFAULT=\"nosplash\"" + backup: yes + notify: + - update-grub + - name: enable Mint Autoupdate command: systemctl enable mintupdate-automation-upgrade.timer args: @@ -142,3 +151,8 @@ group: root force: yes + + handlers: + + - name: update-grub + ansible.builtin.shell: update-grub