summaryrefslogtreecommitdiffstats
path: root/roles/tcpdump/tasks
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2026-07-14 01:21:18 +0200
committerAhmed AbdelHalim <[email protected]>2026-07-14 01:22:54 +0200
commitb809f5c5eb0d6189e921ed2feaf4cafc49fc8943 (patch)
tree0d24b9297acc2f11c05f8d6491801196e2b13db5 /roles/tcpdump/tasks
parentfb5000ad73841ea53b7ab739729c74a4e691b8e9 (diff)
Add tcpdump w/testing
Diffstat (limited to 'roles/tcpdump/tasks')
-rw-r--r--roles/tcpdump/tasks/main.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/tcpdump/tasks/main.yml b/roles/tcpdump/tasks/main.yml
new file mode 100644
index 00000000..15304494
--- /dev/null
+++ b/roles/tcpdump/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: "Ensure tcpdump is installed"
+ become: true
+ ansible.builtin.package:
+ name: "tcpdump"
+ state: "present"