diff options
| author | Ahmed AbdelHalim <[email protected]> | 2026-07-14 01:21:18 +0200 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2026-07-14 01:22:54 +0200 |
| commit | b809f5c5eb0d6189e921ed2feaf4cafc49fc8943 (patch) | |
| tree | 0d24b9297acc2f11c05f8d6491801196e2b13db5 /roles/tcpdump/tasks | |
| parent | fb5000ad73841ea53b7ab739729c74a4e691b8e9 (diff) | |
Add tcpdump w/testing
Diffstat (limited to 'roles/tcpdump/tasks')
| -rw-r--r-- | roles/tcpdump/tasks/main.yml | 6 |
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" |
