diff options
| author | Benjamin Schlüter <bschlueter@posteo.de> | 2018-02-28 11:53:59 +0100 | 
|---|---|---|
| committer | Benjamin Schlüter <bschlueter@posteo.de> | 2018-02-28 11:53:59 +0100 | 
| commit | f2bbd4847333b05b340716fcf1c22dc99819c123 (patch) | |
| tree | 38044b4a726be417177344d55044c393ecc9a2aa /share | |
| parent | eab4ed50bcb14510072c821911f23a5e670982d9 (diff) | |
| download | itzks-systems-f2bbd4847333b05b340716fcf1c22dc99819c123.tar.gz itzks-systems-f2bbd4847333b05b340716fcf1c22dc99819c123.tar.bz2 itzks-systems-f2bbd4847333b05b340716fcf1c22dc99819c123.zip | |
Add new /usr/share/debian-edu-config/wpad-extract script and install with itzks-systems-common.
Diffstat (limited to 'share')
| -rwxr-xr-x | share/debian-edu-config/tools/wpad-extract | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/share/debian-edu-config/tools/wpad-extract b/share/debian-edu-config/tools/wpad-extract new file mode 100755 index 0000000..57eca70 --- /dev/null +++ b/share/debian-edu-config/tools/wpad-extract @@ -0,0 +1,14 @@ +#!/bin/bash +# +# Detect proxy URL via WPAD +# +# Author: Wolfgang Schweer +# License: GNU General Public License v2 or later + +# This version uses pactester from package libpacparser1. + +# Look up one of the www.debian.org IP addresses to avoid hanging on +# DNS if the skolelinux machines are not connected to the Internet. +proxy_url=$(curl -s http://wpad/wpad.dat | pactester -p - \ +            -u http://130.89.148.14 | awk '{print $2}' | cut -d';' -f1) +echo http_proxy=http://$proxy_url | 
