2020-10-17 00:21:57 -05:00
|
|
|
#!/usr/bin/ansible-playbook
|
|
|
|
# vim:ft=ansible:
|
|
|
|
- name: configure packages via apt
|
|
|
|
block:
|
|
|
|
- name: update apt packages
|
2021-04-20 21:54:28 -05:00
|
|
|
apt: upgrade=yes autoremove=yes update_cache=yes cache_valid_time=86400
|
2020-10-17 00:21:57 -05:00
|
|
|
- name: install basic packages
|
|
|
|
apt:
|
|
|
|
name:
|
|
|
|
- acl
|
|
|
|
- apt-file
|
|
|
|
- aptitude
|
|
|
|
- awscli
|
|
|
|
- htop
|
2021-03-27 16:47:14 -05:00
|
|
|
- jq
|
2020-10-17 00:21:57 -05:00
|
|
|
- ncdu
|
|
|
|
- net-tools
|
2021-08-07 11:52:03 -05:00
|
|
|
- nfs-common
|
2020-10-17 00:21:57 -05:00
|
|
|
- openssh-server
|
|
|
|
- pwgen
|
2020-11-01 04:55:05 -06:00
|
|
|
- python-is-python3 # God damn you Nextcloud role
|
2020-10-17 00:21:57 -05:00
|
|
|
- python3-apt
|
2020-10-17 01:11:35 -05:00
|
|
|
- python3-boto
|
|
|
|
- python3-boto3
|
|
|
|
- python3-botocore
|
2021-03-25 12:46:53 -05:00
|
|
|
- python3-docker
|
2020-10-17 01:11:35 -05:00
|
|
|
- python3-pip
|
|
|
|
- python3-setuptools
|
2020-10-17 00:21:57 -05:00
|
|
|
- screen
|
2021-01-23 20:40:21 -06:00
|
|
|
- stow
|
2021-02-28 04:19:08 -06:00
|
|
|
- stress
|
2021-02-03 01:25:42 -06:00
|
|
|
- tmux
|
2020-10-17 00:21:57 -05:00
|
|
|
- vim
|
|
|
|
- whois
|
|
|
|
- name: remove basic packages
|
|
|
|
apt: state=absent name=unattended-upgrades
|
|
|
|
when: ansible_os_family == "Debian"
|