From f15e24049992557fa69af8efc8e3437a862bef92 Mon Sep 17 00:00:00 2001 From: Terrtia Date: Wed, 17 Jun 2020 15:39:24 +0200 Subject: [PATCH] fix: [install] force virtual environmemt activation --- install_virtualenv.sh | 4 +++- installing_deps.sh | 12 +++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/install_virtualenv.sh b/install_virtualenv.sh index 9c80b08c..f61eccce 100755 --- a/install_virtualenv.sh +++ b/install_virtualenv.sh @@ -16,10 +16,12 @@ if [ -z "$VIRTUAL_ENV" ]; then echo export AIL_REDIS=$(pwd)/redis/src/ >> ./AILENV/bin/activate echo export AIL_ARDB=$(pwd)/ardb/src/ >> ./AILENV/bin/activate - . ./AILENV/bin/activate fi +# activate virtual environment +. ./AILENV/bin/activate + pip3 install -U pip pip3 install 'git+https://github.com/D4-project/BGP-Ranking.git/@7e698f87366e6f99b4d0d11852737db28e3ddc62#egg=pybgpranking&subdirectory=client' pip3 install -U -r requirements.txt diff --git a/installing_deps.sh b/installing_deps.sh index 49e7cb2e..a95e365e 100755 --- a/installing_deps.sh +++ b/installing_deps.sh @@ -88,16 +88,18 @@ fi # create AILENV + intall python packages ./install_virtualenv.sh +# force virtual environment +. ./AILENV/bin/activate -pushd ${AIL_BIN}helper/gen_cert +pushd ${AIL_BIN}/helper/gen_cert ./gen_root.sh wait ./gen_cert.sh wait popd -cp ${AIL_BIN}helper/gen_cert/server.crt ${AIL_FLASK}server.crt -cp ${AIL_BIN}helper/gen_cert/server.key ${AIL_FLASK}server.key +cp ${AIL_BIN}/helper/gen_cert/server.crt ${AIL_FLASK}server.crt +cp ${AIL_BIN}/helper/gen_cert/server.key ${AIL_FLASK}server.key mkdir -p $AIL_HOME/PASTES @@ -116,7 +118,7 @@ git describe --abbrev=0 --tags popd # LAUNCH ARDB -bash ${AIL_BIN}LAUNCH.sh -lav & +bash ${AIL_BIN}/LAUNCH.sh -lav & wait echo "" @@ -125,6 +127,6 @@ pushd ${AIL_FLASK} python3 create_default_user.py popd -bash ${AIL_BIN}LAUNCH.sh -k & +bash ${AIL_BIN}/LAUNCH.sh -k & wait echo ""