summaryrefslogtreecommitdiffstats
path: root/roles/tcpdump/tasks
diff options
context:
space:
mode:
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"