From e7773602bfca7cb9c25beb42dfa5d9c91ec459fd Mon Sep 17 00:00:00 2001 From: Deepak S Date: Thu, 18 May 2017 23:00:31 -0700 Subject: Adding http proxy setup for non-intractive build Change-Id: I9a3137f60b83c88b16027a9e6c404ccc3673b820 Signed-off-by: Deepak S --- tools/vnf_build.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'tools/vnf_build.sh') 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 -- cgit 1.2.3-korg