11 lines
158 B
YAML
11 lines
158 B
YAML
---
|
|
- name: "Installing network tools"
|
|
apt: >
|
|
name="{{item}}"
|
|
state=present
|
|
with_items:
|
|
- nmap
|
|
- wireshark
|
|
- manpages-dev
|
|
- vlan
|
|
|