Created prepare playbook

This commit is contained in:
2021-11-08 03:32:56 +01:00
parent 04fbb0c3e3
commit 2d8ae4e8da
8 changed files with 197 additions and 0 deletions

28
ansible/tasks/apt.yaml Normal file
View File

@@ -0,0 +1,28 @@
- 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