From 0c3895d28b006706428987d93d67b70fac3ea052 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Tue, 9 Nov 2021 21:23:47 +0100 Subject: [PATCH] remove faulty options from the default kernel settings the acpi settings cause the LCD backlight keys to stop working. I didn't notice any downsides after removing the options though. --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 3a508c5..488801f 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -4,5 +4,5 @@ dest: /etc/default/grub backrefs: yes regexp: "^GRUB_CMDLINE_LINUX_DEFAULT" - line: 'GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=! acpi_osi=\"Windows 2015\" acpi_backlight=vendor mem_sleep_default=deep"' + line: 'GRUB_CMDLINE_LINUX_DEFAULT="quiet splash mem_sleep_default=deep"' notify: "update grub"