ansible-server-garage/tasks/basics_install.yml
2025-09-29 15:48:00 +02:00

33 lines
606 B
YAML

- name: Basics install
apt:
name:
- rsyslog
- wget
- curl
- git
- vim
- htop
- btop
- net-tools
- unzip
- gnupg
- lsb-release
- ca-certificates
# - software-properties-common
- apt-transport-https
- bash-completion
state: present
update_cache: yes
- name: Ensure man pages are available
apt:
name: man-db
state: present
- name: Deactivate sleep / hibernate
ansible.builtin.command:
cmd: systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
become: true