diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-02-09 15:17:51 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-02-09 15:17:51 +0100 |
commit | fd2ab42bcd28a11a4ed8856eed555ac026626115 (patch) | |
tree | f240f80e7588470cbd995b5654c9443c5c43f09e /install-itzks-workstation-wpad-only | |
parent | 224eae4c7318b94245fb506da6919285ffa8c7b4 (diff) | |
download | itzks-install-script-fd2ab42bcd28a11a4ed8856eed555ac026626115.tar.gz itzks-install-script-fd2ab42bcd28a11a4ed8856eed555ac026626115.tar.bz2 itzks-install-script-fd2ab42bcd28a11a4ed8856eed555ac026626115.zip |
Drop outdate script parts.
Diffstat (limited to 'install-itzks-workstation-wpad-only')
-rw-r--r-- | install-itzks-workstation-wpad-only | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/install-itzks-workstation-wpad-only b/install-itzks-workstation-wpad-only deleted file mode 100644 index 3ccbb2f..0000000 --- a/install-itzks-workstation-wpad-only +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash -# script for installing a Debian Edu Workstation with ITZkS modifications - -set -e - - -# Install libpacparser1 -apt-get install libpacparser1 - - -# Write new content for /usr/share/debian-edu-config/tools/wpad-extract. -# Workaround for Debian bug #888829. Probably fixed with debian-edu-config 1.929+deb9u1. - -cat <<EOT > /usr/share/debian-edu-config/tools/wpad-extract -#!/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 -EOT - -# Run /usr/share/debian-edu-config/tools/update-proxy-from-wpad -/usr/share/debian-edu-config/tools/update-proxy-from-wpad - |