summaryrefslogtreecommitdiffstats
path: root/ci/util.sh
diff options
context:
space:
mode:
authorDan Radez <dradez@redhat.com>2017-04-04 12:54:12 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-04-04 12:54:12 +0000
commita241a5458819cc3488a2e3934daa4a07c662c9dd (patch)
treee3bb0a87e7741d63118e80067dd984812c3b1aaa /ci/util.sh
parentd350e73e338e02513e75648c668fbadbae6dd535 (diff)
parent21c3c7fa27015fb727ce88cd5eb2821138f08283 (diff)
Merge "Removing Deprecated ENV handling"
Diffstat (limited to 'ci/util.sh')
-rwxr-xr-xci/util.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/ci/util.sh b/ci/util.sh
index 34821a7b..1a931d0b 100755
--- a/ci/util.sh
+++ b/ci/util.sh
@@ -2,19 +2,6 @@
# Utility script used to interact with a deployment
# @author Tim Rozet (trozet@redhat.com)
-# Backwards compat for old ENV Vars
-# Remove in E Release
-if [ -n "$CONFIG" ]; then
- echo -e "${red}WARNING: ENV var CONFIG is Deprecated, please unset CONFIG and export BASE in its place${reset}"
- echo -e "${red}WARNING: CONFIG will be removed in E${reset}"
- BASE=$CONFIG
-fi
-if [ -n "$RESOURCES" ]; then
- echo -e "${red}WARNING: ENV var RESOURCES is Deprecated, please unset RESOURCES and export IMAGES in its place${reset}"
- echo -e "${red}WARNING: RESOURCES will be removed in E${reset}"
- IMAGES=$RESOURCES
-fi
-
BASE=${BASE:-'/var/opt/opnfv'}
IMAGES=${IMAGES:-"$BASE/images"}
LIB=${LIB:-"$BASE/lib"}