23 lines
331 B
YAML
23 lines
331 B
YAML
---
|
|
|
|
- hosts: all
|
|
become: true
|
|
tasks:
|
|
|
|
- name: update repo index
|
|
apt:
|
|
update_cache: yes
|
|
|
|
- name: install usefull and basic system tools
|
|
apt:
|
|
name:
|
|
- vim-nox
|
|
- mc
|
|
- nmap
|
|
- net-tools
|
|
- dnsutils
|
|
- tmux
|
|
- tcpdump
|
|
- iptraf-ng
|
|
- screen
|