From d83c3b902bb70a05838c6b928744b58b5fa3d3f6 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Wed, 4 Mar 2020 17:54:38 +0100 Subject: proxy setup fix export --- etc/proxy.sh | 10 +++++----- 1 file 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 -=-" -- cgit