X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=fuel%2Fci%2Fdeploy.sh;h=d5b70d0d69ae67f6851e8fbeb2a619edd29f28d8;hb=563547b4a9f44090f32c0e17d040114854563760;hp=d11c65aedb37a3191825b66eca2ed41fb34a5f78;hpb=2797591c64423a62522f5f7e667422c5434229b2;p=genesis.git diff --git a/fuel/ci/deploy.sh b/fuel/ci/deploy.sh index d11c65a..d5b70d0 100755 --- a/fuel/ci/deploy.sh +++ b/fuel/ci/deploy.sh @@ -1,3 +1,8 @@ -# To be able to deploy on a certain metal environment there needs to be a Deployment Environment Adaptor executable" -# properly added to $PATH such that deploy.sh can call it by $dea [options] as indicated by ./deploy -h. - +#!/bin/bash +set -o errexit +topdir=$(dirname $(readlink -f $BASH_SOURCE)) +deploydir=$(cd ${topdir}/../deploy; pwd) +pushd ${deploydir} > /dev/null +echo -e "python deploy.py $@\n" +python deploy.py $@ +popd > /dev/null \ No newline at end of file