Generalization of recursive function
[apex.git] / contrib / simple_deploy.sh
old mode 100644 (file)
new mode 100755 (executable)
index f4b082a..8da9272
@@ -1,19 +1,13 @@
 #!/bin/bash
 set -e
-apex_home=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
-export CONFIG=$apex_home/build
-export LIB=$apex_home/lib
-export RESOURCES=$apex_home/.build/images/
-export PYTHONPATH=$PYTHONPATH:$apex_home/lib/python
-$apex_home/ci/dev_dep_check.sh
-pushd $apex_home/build
-make clean
-make undercloud
-make overcloud-opendaylight
-pushd $apex_home/ci
-./clean.sh
-./dev_dep_check.sh
-out=/tmp/opnfv-deploy.out
-echo "All further output will be piped to $out"
-(nohup ./deploy.sh -v -n $apex_home/config/network/network_settings.yaml -d $apex_home/config/deploy/os-odl_l3-nofeature-noha.yaml &> $out &)
+apex_home=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/../
+export PYTHONPATH=$apex_home/apex:$PYTHONPATH
+$apex_home/ci/dev_dep_check.sh || true
+pip3 install -r $apex_home/requirements.txt
+pushd $apex_home/apex
+python3 clean.py
+echo "All further output will be piped to $PWD/nohup.out"
+(nohup python3 deploy.py -v -n ../config/network/network_settings.yaml -d ../config/deploy/os-nosdn-nofeature-noha.yaml --deploy-dir ../build --lib-dir ../lib --image-dir ../.build &)
+[ -f nohup.out ] || sleep 3
+tail -f nohup.out
 popd