32 lines
500 B
YAML
32 lines
500 B
YAML
---
|
|
- name: Install common packages
|
|
apt:
|
|
state: latest
|
|
pkg:
|
|
- vim
|
|
- htop
|
|
- bash-completion
|
|
- pciutils
|
|
- usbutils
|
|
- postfix
|
|
- wget
|
|
- curl
|
|
- unbound
|
|
- ca-certificates
|
|
install_recommends: no
|
|
force_apt_get: yes
|
|
become: yes
|
|
|
|
- name: Purge unwanted packages
|
|
apt:
|
|
state: absent
|
|
purge: yes
|
|
autoremove: yes
|
|
pkg:
|
|
- nano
|
|
- exim4-base
|
|
install_recommends: no
|
|
force_apt_get: yes
|
|
become: yes
|
|
|