b5d502dbf4c844c1309968304da8e39802ed2b95
[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 rm $f
20 fi
21 fi
22 if getent hosts $proxy_host && nc -z $proxy_host $proxy_port; then
23 echo $proxy_url
24 else
25 touch $f
26 fi