vm-ansible/roles/common/tasks/apt.yaml

39 lines
587 B
YAML
Raw Normal View History

---
- name: "Remove Ubuntu bloatware"
apt:
state: absent
name: ubutu-server
autoremove: yes
- name: "Update machine"
apt:
update_cache: yes
2022-02-05 21:49:58 +01:00
upgrade: "yes"
autoclean: yes
autoremove: yes
- name: "Install my favourite applications"
apt:
update_cache: yes
state: present
name:
- tmux
- htop
- dnsutils
- needrestart
- curl
- wget
- netcat-openbsd
- tree
- net-tools
- nano
- psmisc
- python3
- python3-venv
- strace
- ifstat
- tcpdump
- xxd
- git
2022-04-16 19:55:29 +02:00
...