Vagrant-Ansible scripts for tutorial vm

Change-Id: I0481fa9c7df897812a765973440b6b1b2bf669f8
diff --git a/tools/dev/vagrant/ansible/machine-restart.yml b/tools/dev/vagrant/ansible/machine-restart.yml
new file mode 100644
index 0000000..2b58d6f
--- /dev/null
+++ b/tools/dev/vagrant/ansible/machine-restart.yml
@@ -0,0 +1,12 @@
+---
+#
+# Restarts the target machine
+#
+- name: Restarting the machine
+  hosts: localhost
+  tasks:
+  - shell: sleep 2 && shutdown -r now "Ansible updates triggered"
+    async: 1
+    poll: 0
+    sudo: true
+    ignore_errors: true
\ No newline at end of file