From f2bbd4847333b05b340716fcf1c22dc99819c123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Schl=C3=BCter?= Date: Wed, 28 Feb 2018 11:53:59 +0100 Subject: Add new /usr/share/debian-edu-config/wpad-extract script and install with itzks-systems-common. --- debian/itzks-systems-common.install | 1 + share/debian-edu-config/tools/wpad-extract | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100755 share/debian-edu-config/tools/wpad-extract diff --git a/debian/itzks-systems-common.install b/debian/itzks-systems-common.install index b99c9e2..e5c16ae 100644 --- a/debian/itzks-systems-common.install +++ b/debian/itzks-systems-common.install @@ -9,6 +9,7 @@ etc/sitesummary/* etc/sitesummary/ etc/standardskriver.cfg etc/ etc/sudoers.d/itzks-systems-common etc/sudoers.d/ sbin/itzks-systems.do_preseed +share/debian-edu-config/ /usr/share/ share/itzks-systems-common/ usr/share/ usr-lib-nagios-plugins/check_fs_ro.sh usr/lib/nagios/plugins/ usr-lib-nagios-plugins/check_mem.pl usr/lib/nagios/plugins/ 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 -- cgit v1.2.3