From d93d2992ff5de7f60c47fd3c31e429e5c06f6bce Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Thu, 28 Apr 2016 18:24:42 -0400 Subject: Standarizing CONFIG and RESOURCES - first stage in standarizing how custom config values are passed in by moving to using ENV vars to pass in custom params - next stage is to remove the -r and -c options in deploy.sh Moving this direction will reduce managment of custom parameters and rely on ENV vars to make the customizations for development Change-Id: Ibbc171d5e6801b27c1b62ca65c2a9f7830483b97 Signed-off-by: Dan Radez --- ci/util.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ci/util.sh') diff --git a/ci/util.sh b/ci/util.sh index 4f795456..3e50d96b 100644 --- a/ci/util.sh +++ b/ci/util.sh @@ -2,7 +2,7 @@ # Utility script used to interact with a deployment # @author Tim Rozet (trozet@redhat.com) -CONFIG=/var/opt/opnfv +CONFIG=${CONFIG:-'/var/opt/opnfv'} VALID_CMDS="undercloud debug-stack -h --help" source $CONFIG/utility-functions.sh @@ -72,4 +72,4 @@ main() { parse_cmdline "$@" } -main "$@" \ No newline at end of file +main "$@" -- cgit 1.2.3-korg