12 lines
240 B
YAML
12 lines
240 B
YAML
---
|
|
|
|
- name: Git install
|
|
apt:
|
|
pkg: git
|
|
state: present
|
|
update_cache: yes
|
|
|
|
- name: Deactivate sleep / hibernate
|
|
ansible.builtin.command:
|
|
cmd: systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
|