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
Raw Normal View History

2021-11-09 19:31:12 +01:00
- name: "set the correct grub options"
lineinfile:
state: present
dest: /etc/default/grub
backrefs: yes
2021-11-09 20:12:09 +01:00
regexp: "^GRUB_CMDLINE_LINUX_DEFAULT"
line: 'GRUB_CMDLINE_LINUX_DEFAULT="quiet splash mem_sleep_default=deep"'
2021-11-09 19:31:12 +01:00
notify: "update grub"