9 lines
185 B
YAML
9 lines
185 B
YAML
---
|
|
|
|
- name: do not power down when the lid is closed
|
|
lineinfile:
|
|
dest: /etc/systemd/logind.conf
|
|
regexp: "^HandleLidSwitch="
|
|
line: "HandleLidSwitch=ignore"
|
|
become: true
|