blob: c278d109bdcd2a032f7a2a824f5b34deaab14b1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
if test "$HTTP_PROXY" != ""; then
export http_proxy="$HTTP_PROXY"
fi
if test "$HTTPS_PROXY" != ""; then
export https_proxy="$HTTPS_PROXY"
fi
if test "$FTP_PROXY" != ""; then
export ftp_proxy="$FTP_PROXY"
fi
if test "$ALL_PROXY" != ""; then
export all_proxy="$ALL_PROXY"
fi
if test "$NO_PROXY" != ""; then
export no_proxy="$NO_PROXY"
fi
echo "-=- debug -=-"
set | grep -i -e "_proxy=" || true
echo "-=-"
|