From 1f5ef678b4298fdef56e168dd802627a80f6f441 Mon Sep 17 00:00:00 2001 From: gwu Date: Tue, 17 Jul 2018 22:36:47 -0700 Subject: Bug fix on HEAT template HTTP_PROXY Various boot scripts should have been checking for "no_proxy" but were checking for " " instead. This fixes the issue. Also add default values for HTTP_PROXY variables. Change-Id: I5245018a7bb9c33b84ac3096d8a9c0986b2e976c Issue-ID: OOM-1275 Signed-off-by: gwu --- boot/aai_serv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot/aai_serv.sh') diff --git a/boot/aai_serv.sh b/boot/aai_serv.sh index dc93be64..09949bb9 100644 --- a/boot/aai_serv.sh +++ b/boot/aai_serv.sh @@ -11,7 +11,7 @@ HTTP_PROXY=$(cat /opt/config/http_proxy.txt) HTTPS_PROXY=$(cat /opt/config/https_proxy.txt) -if [ $HTTP_PROXY != " " ] +if [ $HTTP_PROXY != "no_proxy" ] then export http_proxy=$HTTP_PROXY export https_proxy=$HTTPS_PROXY -- cgit 1.2.3-korg