Intégration de la branche release-2.1.1
This commit is contained in:
commit
02742deccc
|
@ -1,3 +1,8 @@
|
|||
## Version 2.1.1 du 22/06/2015-11:37
|
||||
|
||||
40225b0 Intégration de la branche proxy-default
|
||||
2fa0791 profile.d/proxy lit aussi les valeurs par défaut pour l'hôte
|
||||
|
||||
## Version 2.1.0 du 22/06/2015-10:25
|
||||
|
||||
2a3eb76 Intégration de la branche uenv-modifs
|
||||
|
|
|
@ -1 +1 @@
|
|||
2.1.0
|
||||
2.1.1
|
||||
|
|
|
@ -11,9 +11,16 @@ function set_proxy() {
|
|||
local FTP_PROXY_HOST FTP_PROXY_PORT
|
||||
local PROXY_LOCAL_DOMAINS AUTHFTP_PROXY_HOST
|
||||
|
||||
[ -f "$HOME/etc/default/proxy" ] && source "$HOME/etc/default/proxy"
|
||||
local default_profile
|
||||
if [ -f "$HOME/etc/default.${HOSTNAME%%.*}/proxy" ]; then
|
||||
default_profile="$HOME/etc/default.${HOSTNAME%%.*}/proxy"
|
||||
elif [ -f "$HOME/etc/default/proxy" ]; then
|
||||
default_profile="$HOME/etc/default/proxy"
|
||||
fi
|
||||
[ -f "$default_profile" ] && source "$default_profile"
|
||||
|
||||
if [ -n "$PROXY_ENABLE_LIBPROXY" -a -x /usr/bin/proxy ]; then
|
||||
local -a proxies=($(proxy <<<http://www.google.fr/ 2>/dev/null))
|
||||
local -a proxies=($(/usr/bin/proxy <<<http://www.google.fr/ 2>/dev/null))
|
||||
proxy="${proxies[0]}"
|
||||
if [ "$proxy" == "direct://" ]; then
|
||||
# pas de proxy
|
||||
|
@ -29,7 +36,7 @@ function set_proxy() {
|
|||
return
|
||||
fi
|
||||
unset no_proxy
|
||||
elif [ -f "$HOME/etc/default/proxy" ]; then
|
||||
elif [ -f "$default_profile" ]; then
|
||||
# proxy par défaut
|
||||
if [ -n "$HTTP_PROXY_HOST" ]; then
|
||||
proxy="http://$HTTP_PROXY_HOST:${HTTP_PROXY_PORT:-3128}/"
|
||||
|
|
Loading…
Reference in New Issue