aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vagrant/bootstrap.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh
index fba8b5c9..f418926c 100644
--- a/vagrant/bootstrap.sh
+++ b/vagrant/bootstrap.sh
@@ -11,11 +11,15 @@ if [ $? -ne 0 ]; then
exit 1;
fi
+cd JARR
+# Bootstrap
+git submodule init
+git submodule update
+
# Installation of PostgreSQL
apt-get install -y postgresql postgresql-server-dev-9.4 postgresql-client
# Install all Python requierements
-cd JARR
# For lxml
apt-get install -y libxml2-dev libxslt1-dev
# installation with pip
bgstack15