blob: 91d895034de6b0139f12b67a4dbd7116118c39d1 (
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
http_proxy="$HTTP_PROXY"
fi
if test "$HTTPS_PROXY" != ""; then
https_proxy="$HTTPS_PROXY"
fi
if test "$FTP_PROXY" != ""; then
ftp_proxy="$FTP_PROXY"
fi
if test "$ALL_PROXY" != ""; then
all_proxy="$ALL_PROXY"
fi
if test "$NO_PROXY" != ""; then
no_proxy="$NO_PROXY"
fi
echo "-=- debug -=-"
set | grep -i -e "_proxy="
echo "-=-"
|