From: Deepak S Date: Fri, 19 May 2017 06:00:31 +0000 (-0700) Subject: Adding http proxy setup for non-intractive build X-Git-Tag: v1.0.0~15 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F27%2F35027%2F1;p=samplevnf.git Adding http proxy setup for non-intractive build Change-Id: I9a3137f60b83c88b16027a9e6c404ccc3673b820 Signed-off-by: Deepak S --- diff --git a/tools/vnf_build.sh b/tools/vnf_build.sh index 2a9417ca..342ac119 100755 --- a/tools/vnf_build.sh +++ b/tools/vnf_build.sh @@ -262,6 +262,18 @@ build_vnfs() if [[ "$1" = "--silient" ]];then pushd $VNF_CORE + echo "Setup proxy if needed..." + http_proxy=$2 + https_proxy=$3 + if [[ "$http_proxy" != "" ]]; then + export http_proxy=$http_proxy + export https_proxy=$http_proxy + fi + + if [[ "$https_proxy" != "" ]]; then + export https_proxy=$https_proxy + fi + echo "Install required libraries..." touch .agree install_libs