diff --git a/etc/vagrant/bootstrap.sh b/etc/vagrant/bootstrap.sh index 55df88eb7e6e9d7fad8d97aa885af714fdb4f20b..9e1a30945513c78eeaeb1a75cbe50eac028a2514 100644 --- a/etc/vagrant/bootstrap.sh +++ b/etc/vagrant/bootstrap.sh @@ -40,7 +40,7 @@ INSTALL_PROJECT_ISOCHRONE_LOCAL=true # will install latest isochrone release from nexus repository INSTALL_PROJECT_ISOCHRONE_RELEASE=true # will install latest isochrone snapshot from nexus repository -INSTALL_PROJECT_ISOCHRONE_SNAPSHOT=false +INSTALL_PROJECT_ISOCHRONE_SNAPSHOT=true INSTALL_PROJECT_PSIPROBE=true PG_DB_NAME="isochrone" @@ -60,13 +60,6 @@ if [ -n "$3" ]; then fi fi -if $IS_LOCAL_TEST_DEPLOY; then - INSTALL_PROJECT_CANIGET2=false - INSTALL_PROJECT_ISOCHRONE_LOCAL=false - INSTALL_PROJECT_ISOCHRONE_RELEASE=false - INSTALL_PROJECT_ISOCHRONE_SNAPSHOT=false -fi - ########################### # General configuration ########################### @@ -157,6 +150,12 @@ INSTALL_JAVA=false INSTALL_MAVEN=false INSTALL_TOMCAT=false +if $IS_LOCAL_TEST_DEPLOY; then + INSTALL_PROJECT_CANIGET2=false + INSTALL_PROJECT_ISOCHRONE_LOCAL=false + INSTALL_PROJECT_ISOCHRONE_RELEASE=false + INSTALL_PROJECT_ISOCHRONE_SNAPSHOT=false +fi if $INSTALL_GEOSERVER || $INSTALL_PROJECT_CANIGET2 || $INSTALL_PROJECT_ISOCHRONE_LOCAL || $INSTALL_PROJECT_ISOCHRONE_RELEASE || $INSTALL_PROJECT_ISOCHRONE_SNAPSHOT || $INSTALL_PROJECT_PSIPROBE; then INSTALL_TOMCAT=true fi