28 lines
439 B
YAML
28 lines
439 B
YAML
|
- name: "Remove ubuntu stuff"
|
||
|
apt:
|
||
|
state: absent
|
||
|
name: ubutu-server
|
||
|
autoremove: yes
|
||
|
|
||
|
- name: "Install my favourite applications"
|
||
|
apt:
|
||
|
state: present
|
||
|
name:
|
||
|
- tmux
|
||
|
- htop
|
||
|
- dnsutils
|
||
|
- needrestart
|
||
|
- curl
|
||
|
- wget
|
||
|
- netcat-openbsd
|
||
|
- tree
|
||
|
- net-tools
|
||
|
- nano
|
||
|
- psmisc
|
||
|
- python3
|
||
|
- python3-venv
|
||
|
- strace
|
||
|
- ifstat
|
||
|
- tcpdump
|
||
|
- xxd
|
||
|
- git
|