diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-03-04 17:54:38 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-03-04 17:54:38 +0100 |
commit | d83c3b902bb70a05838c6b928744b58b5fa3d3f6 (patch) | |
tree | c330a62663b78d7cf266e460c7928be1b6341793 | |
parent | 266f8ce942cb0d493a93992beb16633a20aa8ff3 (diff) | |
download | s2i-base-httpd-d83c3b902bb70a05838c6b928744b58b5fa3d3f6.tar.gz |
proxy setup fix export
-rw-r--r-- | etc/proxy.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/proxy.sh b/etc/proxy.sh index 91d8950..0027af5 100644 --- a/etc/proxy.sh +++ b/etc/proxy.sh @@ -1,17 +1,17 @@ if test "$HTTP_PROXY" != ""; then - http_proxy="$HTTP_PROXY" + export http_proxy="$HTTP_PROXY" fi if test "$HTTPS_PROXY" != ""; then - https_proxy="$HTTPS_PROXY" + export https_proxy="$HTTPS_PROXY" fi if test "$FTP_PROXY" != ""; then - ftp_proxy="$FTP_PROXY" + export ftp_proxy="$FTP_PROXY" fi if test "$ALL_PROXY" != ""; then - all_proxy="$ALL_PROXY" + export all_proxy="$ALL_PROXY" fi if test "$NO_PROXY" != ""; then - no_proxy="$NO_PROXY" + export no_proxy="$NO_PROXY" fi echo "-=- debug -=-" |