1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_base.git synced 2024-08-16 14:29:50 +02:00
ansible_role_base/tasks/main.yml
2018-11-12 21:01:35 +01:00

52 lines
846 B
YAML

---
---
- name: Install common base packages
apt:
package:
- tmux
- sudo
- molly-guard
- htop
- iftop
- iotop
- sysstat
- ethtool
- ethstatus
- nethogs
- nload
- ncdu
- mtr-tiny
- knot-dnsutils
- atop
- vim
- nmap
- python3
- wget
- git
- bash-completion
- unzip
- python3-pip
#- rng-tools
state: latest
update_cache: yes
cache_valid_time: 43200
- name: Install some common Debian specific packages
apt:
package:
- debian-goodies
- apt-dater-host
state: latest
update_cache: yes
cache_valid_time: 43200
when: ansible_distribution == 'Debian'
- name: Remove rpcbind, nfs-common
apt:
pkg:
- rpcbind
- nfs-common
state: absent