16 lines
294 B
YAML
16 lines
294 B
YAML
---
|
|
|
|
- name: Basics install
|
|
apt:
|
|
name:
|
|
- rsyslog
|
|
- wget
|
|
- curl
|
|
- 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
|