Have vagrant scripts search for local deps folder when installing Mysos.

So people can cache packages in /home/vagrant/mysos/deps to reduce installation time.
diff --git a/vagrant/bin/mysos_executor.sh b/vagrant/bin/mysos_executor.sh
index 474cd0e..132fb97 100755
--- a/vagrant/bin/mysos_executor.sh
+++ b/vagrant/bin/mysos_executor.sh
@@ -9,8 +9,9 @@
 
 # 'protobuf' is a a dependency of mesos.interface's but we install it separately because otherwise
 # 3.0.0-alpha is installed and it breaks the mesos.interface install.
-venv/bin/python venv/bin/pip install 'protobuf==2.6.1'
-venv/bin/python venv/bin/pip install --find-links /home/vagrant/mysos/deps mesos.native
-venv/bin/python venv/bin/pip install --pre --find-links . mysos[executor]
+venv/bin/python venv/bin/pip install --find-links /home/vagrant/mysos/deps \
+    'protobuf==2.6.1' mesos.native
+venv/bin/python venv/bin/pip install --pre --find-links /home/vagrant/mysos/deps --find-links . \
+    mysos[executor]
 
 venv/bin/python venv/bin/vagrant_mysos_executor
diff --git a/vagrant/bin/mysos_scheduler.sh b/vagrant/bin/mysos_scheduler.sh
index c050591..500dc66 100755
--- a/vagrant/bin/mysos_scheduler.sh
+++ b/vagrant/bin/mysos_scheduler.sh
@@ -8,9 +8,9 @@
 
 # 'protobuf' is a dependency of mesos.interface's but we install it separately because otherwise
 # 3.0.0-alpha is installed and it breaks the mesos.interface install.
-$TMPDIR/bin/pip install 'protobuf==2.6.1'
-$TMPDIR/bin/pip install --find-links /home/vagrant/mysos/deps mesos.native
-$TMPDIR/bin/pip install --pre --find-links /home/vagrant/mysos/dist mysos[scheduler]
+$TMPDIR/bin/pip install --find-links /home/vagrant/mysos/deps 'protobuf==2.6.1' mesos.native
+$TMPDIR/bin/pip install --pre --find-links /home/vagrant/mysos/dist \
+    --find-links /home/vagrant/mysos/deps mysos[scheduler]
 
 ZK_HOST=192.168.33.17
 API_PORT=55001