11 lines
257 B
YAML
11 lines
257 B
YAML
|
- name: Enable non-privileged users to run wireshark
|
||
|
ansible.builtin.debconf:
|
||
|
name: wireshark
|
||
|
question: wireshark-common/install-setuid
|
||
|
value: true
|
||
|
vtype: boolean
|
||
|
- name: "Install Wireshark"
|
||
|
apt:
|
||
|
name: wireshark-qt
|
||
|
state: latest
|