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:
parent
adfa86ac26
commit
36a73b5adc
12
roles/network-tools/main.yaml
Normal file
12
roles/network-tools/main.yaml
Normal 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
|
@ -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
|
|
||||||
|
@ -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
5
update.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: "Update and upgrade Debian."
|
||||||
|
hosts: update
|
||||||
|
roles:
|
||||||
|
- system
|
Loading…
Reference in New Issue
Block a user