Initial commit of the voltha installer. There are several things that
need to be cleaned up but the installer is fully functional in test
mode and creates 3 non-clustered VMs with identical voltha installs
until such time as HA is ready. Once HA is ready, the scripts will be
modified to deploy the full HA cluster.
This update partially addresses Epic VOL-6.

Made changes requested by the reviewers.

Change-Id: I083239e1f349136d2ec1e51e09391da341177076
diff --git a/install/BuildVoltha.sh b/install/BuildVoltha.sh
new file mode 100755
index 0000000..67a6183
--- /dev/null
+++ b/install/BuildVoltha.sh
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+vmName="voltha_voltha"
+
+# Voltha directory
+cd ..
+
+# Destroy the VM if it's running
+vagrant destroy voltha
+
+# Bring up the VM.
+vagrant up voltha
+
+# Get the VM's ip address
+ipAddr=`virsh domifaddr $vmName | tail -n +3 | awk '{ print $4 }' | sed -e 's~/.*~~'`
+
+# Run all the build commands
+ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .vagrant/machines/voltha/libvirt/private_key vagrant@$ipAddr "cd /cord/incubator/voltha && . env.sh && make fetch && make"