init
This commit is contained in:
35
roles/packages/tasks/main.yaml
Normal file
35
roles/packages/tasks/main.yaml
Normal file
@ -0,0 +1,35 @@
|
||||
- name: Install base packages
|
||||
ansible.builtin.apt:
|
||||
name: "{{ item }}"
|
||||
state: latest
|
||||
update_cache: yes
|
||||
install_recommends: no
|
||||
with_items:
|
||||
- cron
|
||||
- logrotate
|
||||
- dmidecode
|
||||
- lshw
|
||||
- sysstat
|
||||
- iotop
|
||||
- iftop
|
||||
- inetutils-telnet
|
||||
- inetutils-ping
|
||||
- inetutils-ftp
|
||||
- ethtool
|
||||
- tcpdump
|
||||
- mtr
|
||||
- curl
|
||||
- wget
|
||||
- rsync
|
||||
- psmisc
|
||||
- screen
|
||||
- vim
|
||||
- file
|
||||
- tree
|
||||
- plocate
|
||||
- findutils
|
||||
- diffutils
|
||||
- git
|
||||
- htop
|
||||
- unzip
|
||||
notify: Autoremove and autoclean packages
|
Reference in New Issue
Block a user