This repository has been archived on 2021-11-09. You can view files and clone it, but cannot push or open issues or pull requests.
xps-9570/tasks/main.yml

9 lines
261 B
YAML

- name: "set the correct grub options"
lineinfile:
state: present
dest: /etc/default/grub
backrefs: yes
regexp: "^GRUB_CMDLINE_LINUX_DEFAULT"
line: 'GRUB_CMDLINE_LINUX_DEFAULT="quiet splash mem_sleep_default=deep"'
notify: "update grub"