You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
581 B
YAML
38 lines
581 B
YAML
|
2 years ago
|
---
|
||
|
|
- name: Update & upgrade system
|
||
|
|
apt:
|
||
|
|
update_cache: yes
|
||
|
|
upgrade: dist
|
||
|
|
|
||
|
|
- name: Install required packages
|
||
|
|
apt:
|
||
|
|
name:
|
||
|
|
- cron
|
||
|
|
- python3-pip
|
||
|
|
- python3-virtualenv
|
||
|
|
- python3-setuptools
|
||
|
|
- htop
|
||
|
|
- man
|
||
|
|
- net-tools
|
||
|
|
- bash-completion
|
||
|
|
- locales
|
||
|
|
- python-is-python3
|
||
|
|
- wget
|
||
|
|
- zip
|
||
|
|
- bzip2
|
||
|
|
- tree
|
||
|
|
- vim
|
||
|
|
- vim-common
|
||
|
|
- screen
|
||
|
|
- curl
|
||
|
|
- unzip
|
||
|
|
state: present
|
||
|
|
|
||
|
|
- name: Remove useless stuff
|
||
|
|
apt:
|
||
|
|
name:
|
||
|
|
- bind9
|
||
|
|
- telnet
|
||
|
|
- ftp
|
||
|
|
state: absent
|