Vagrant-Ansible scripts for tutorial vm

Change-Id: I0481fa9c7df897812a765973440b6b1b2bf669f8
diff --git a/tools/dev/vagrant/ansible/roles/wireshark-custom/tasks/main.yml b/tools/dev/vagrant/ansible/roles/wireshark-custom/tasks/main.yml
new file mode 100644
index 0000000..d6aa38b
--- /dev/null
+++ b/tools/dev/vagrant/ansible/roles/wireshark-custom/tasks/main.yml
@@ -0,0 +1,13 @@
+- name: Enabling non-root wireshark 1/2 (Set debconf)
+  become: yes
+  debconf: name='wireshark-common' question='wireshark-common/install-setuid' value='true' vtype='boolean'
+
+- name: Enabling non-root wireshark 2/2 (reconfiguring wireshark-common package)
+  become: yes
+  command: dpkg-reconfigure -f noninteractive wireshark-common
+
+- name: Downloading most recent openflow.lua wireshark plugin
+  get_url:
+    url: "{{ wireshark.of_lua_url }}"
+    dest: /home/ubuntu
+    mode: 0777
\ No newline at end of file