minor fixes
[distro-setup] / filesystem / etc / apt / detect-http-proxy
1 #!/bin/bash
2 # based on
3 # http://askubuntu.com/questions/53443/how-do-i-ignore-a-proxy-if-not-available
4 # altered because testing a down proxy takes like 2 seconds,
5 # and we would do it like 100 times in a row. so cache a failed result
6 # locally for 10 minutes. Also, using newer option based on man apt.conf.
7 #
8 # Once when I was testing, it seemed I needed to have it output
9 # DIRECT after toutputing the proxy url
10 proxy_host=faiserver
11 proxy_port=3142
12 proxy_url=http://$proxy_host:$proxy_port/
13 f=/tmp/apt_proxy_fail
14 if [[ -r $f ]]; then
15 if (( $(( $(date +%s) - $(stat -c %Y $f ) )) < 60*10 )); then
16 echo DIRECT
17 exit 0
18 else
19 if [[ -w $f ]]; then
20 rm $f
21 fi
22 fi
23 fi
24 if getent hosts $proxy_host && nc -z $proxy_host $proxy_port &>/dev/null; then
25 echo $proxy_url
26 else
27 if [[ ! -e $f || -w $f ]]; then
28 touch $f
29 fi
30 fi