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 name: net-tools
state: latest state: latest
update_cache: true 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: roles:
- system - system
- softwares - softwares
- network-tools
- bpytop - bpytop
- ip_forward - ip_forward
- dnsmasq - dnsmasq

5
update.yaml Normal file
View File

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