blob: d6aa38bb359626de5b9285399a128dace65c43e4 [file] [log] [blame]
Luca Prete8d4e8bc2016-08-24 14:49:54 -07001- name: Enabling non-root wireshark 1/2 (Set debconf)
2 become: yes
3 debconf: name='wireshark-common' question='wireshark-common/install-setuid' value='true' vtype='boolean'
4
5- name: Enabling non-root wireshark 2/2 (reconfiguring wireshark-common package)
6 become: yes
7 command: dpkg-reconfigure -f noninteractive wireshark-common
8
9- name: Downloading most recent openflow.lua wireshark plugin
10 get_url:
11 url: "{{ wireshark.of_lua_url }}"
12 dest: /home/ubuntu
13 mode: 0777