ansible-server-garage/tasks/basics_install.yml

33 lines
604 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