aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry ALLENO <thierry.alleno@orange.com>2019-07-24 11:36:42 +0200
committerThierry ALLENO <thierry.alleno@orange.com>2019-07-24 11:36:42 +0200
commitd8939f4ad11458d07e6da530c5862347cbaca9e5 (patch)
tree9ae70755eae6e925cec8c411ddcf960ba732d14d
parent6102318c63a74d38375ba24788fdb91f7d1bdcd4 (diff)
Add proxy in cloudify_ims
Add http-proxy configuration for pip in cloudify_ims testcase. Correct some errors. Change-Id: I980fc78f48c5be5d6166388f8b72f40cb613162c Signed-off-by: Thierry ALLENO <thierry.alleno@orange.com>
-rw-r--r--functest/ci/add_proxy.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/functest/ci/add_proxy.sh b/functest/ci/add_proxy.sh
index a3270b136..082141073 100644
--- a/functest/ci/add_proxy.sh
+++ b/functest/ci/add_proxy.sh
@@ -74,6 +74,13 @@ http-proxy-port = "${http_proxy_port}"
EOF
}
+add_proxy_pip () {
+ cat << EOF >> "$1"
+[global]
+proxy="${http_proxy}"
+EOF
+}
+
tmpdir=$(mktemp -d)
for image in $images; do
if [ ! -f "$image" ]; then
@@ -88,8 +95,9 @@ for image in $images; do
add_proxy_juju_systemd "${tmpdir}/etc/juju-proxy-systemd.conf"
mkdir -p ${tmpdir}/root/.m2
mkdir -p ${tmpdir}/root/.subversion
- add_proxy_maven "${tmpdir}/root/.m2/settings.xml}"
- add_proxy_svn "${tmpdir}/root/.subversion/servers}"
+ add_proxy_maven "${tmpdir}/root/.m2/settings.xml"
+ add_proxy_svn "${tmpdir}/root/.subversion/servers"
+ add_proxy_pip "${tmpdir}/etc/pip.conf"
fi
guestunmount "${tmpdir}"
done