Luca Prete | 8d4e8bc | 2016-08-24 14:49:54 -0700 | [diff] [blame] | 1 | - 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 }}" |
Eric Tang | bec1485 | 2018-05-10 22:55:58 +0800 | [diff] [blame] | 12 | dest: /home/ubuntu/openflow.lua |
| 13 | mode: 0644 |
| 14 | owner: ubuntu |
| 15 | group: ubuntu |