feat: refactored router to have network tools and removed these from basic setup

Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
This commit is contained in:
Louis Vallat 2023-03-12 13:03:36 +01:00
parent adfa86ac26
commit 36a73b5adc
No known key found for this signature in database
GPG Key ID: 0C87282F76E61283
4 changed files with 18 additions and 12 deletions

View File

@ -0,0 +1,12 @@
---
- name: Install tcpdump
ansible.builtin.apt:
name: tcpdump
state: latest
update_cache: true
- name: Install jnettop
ansible.builtin.apt:
name: jnettop
state: latest
update_cache: true

View File

@ -16,15 +16,3 @@
name: net-tools
state: latest
update_cache: true
- name: Install tcpdump
ansible.builtin.apt:
name: tcpdump
state: latest
update_cache: true
- name: Install jnettop
ansible.builtin.apt:
name: jnettop
state: latest
update_cache: true

View File

@ -4,6 +4,7 @@
roles:
- system
- softwares
- network-tools
- bpytop
- ip_forward
- dnsmasq

5
update.yaml Normal file
View File

@ -0,0 +1,5 @@
---
- name: "Update and upgrade Debian."
hosts: update
roles:
- system