| 12345678910111213141516171819202122 |
- ---
- - hosts: local
- vars:
- release: focal
- user_permission: vidikon
- stream_multicast_link: 'udp://@224.0.0.230:8001'
- icon_patch: /home/{{ user_permission }}/icons
- shortcut_ico_path: "{{ icon_patch }}/stream-icon.png"
- become: true
- gather_facts: no
- tasks:
-
- - name: Allow tcpdump
- community.general.sudoers:
- name: allow-tcpdump
- state: present
- user: vidikon
- commands: /usr/bin/tcpdump
- nopassword: true
- validation: absent
|