diff options
Diffstat (limited to 'etc/proxy.sh')
-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 -=-" |