46 lines
835 B
YAML
46 lines
835 B
YAML
---
|
|
|
|
- name: "Check that host runs Debian buster/sid on x86_64"
|
|
assert:
|
|
that:
|
|
- "ansible_architecture == 'aarch64' or ansible_architecture == 'x86_64'"
|
|
- "ansible_os_family == 'Debian'"
|
|
|
|
|
|
- name: "Upgrade system"
|
|
apt:
|
|
upgrade: dist # Should we do a full uprade instead of a dist one?
|
|
update_cache: yes
|
|
cache_valid_time: 3600
|
|
autoclean: yes
|
|
autoremove: yes
|
|
|
|
- name: "Install base tools"
|
|
apt:
|
|
state: present
|
|
update_cache: no
|
|
name:
|
|
- atop
|
|
- bmon
|
|
- curl
|
|
- dnsutils
|
|
- fail2ban
|
|
- git
|
|
- htop
|
|
- iftop
|
|
- iotop
|
|
- iproute2
|
|
- iptables
|
|
- iptables-persistent
|
|
- iputils-ping
|
|
- less
|
|
- net-tools
|
|
- nginx
|
|
- screen
|
|
- strace
|
|
- sudo
|
|
- tar
|
|
- tcpdump
|
|
- unzip
|
|
- vim
|
|
|