7 lines
219 B
YAML
7 lines
219 B
YAML
- name: system setup | proxmox | disable standby
|
|
lineinfile:
|
|
path: "/etc/systemd/logind.conf"
|
|
line: "HandleLidSwitch=ignore"
|
|
state: present
|
|
insertafter: "^#HandleLidSwitch=.*$"
|
|
notify: restart_logind |