summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Schlüter <bschlueter@posteo.de>2018-01-30 13:32:18 +0100
committerBenjamin Schlüter <bschlueter@posteo.de>2018-01-30 13:32:18 +0100
commitf0fe216e8cdc90e0e9b18c4ac33a50d789257e9d (patch)
tree0bbad9c12c67f97578d8a314f1baf2abd151eb52
parent8f02276f23f9c376fe03c33a5cc7fb0b9e821432 (diff)
downloaditzks-install-script-f0fe216e8cdc90e0e9b18c4ac33a50d789257e9d.tar.gz
itzks-install-script-f0fe216e8cdc90e0e9b18c4ac33a50d789257e9d.tar.bz2
itzks-install-script-f0fe216e8cdc90e0e9b18c4ac33a50d789257e9d.zip
Fix syntax errors and add install of libpacparser1.
-rw-r--r--install-itzks-workstation8
1 files changed, 6 insertions, 2 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation
index 29e7ac5..b1b2b5f 100644
--- a/install-itzks-workstation
+++ b/install-itzks-workstation
@@ -46,6 +46,9 @@ apt-get install itzks-systems-workstation
# Install wireless-tools for configuration of WiFi
apt-get install wireless-tools uuid-runtime
+# Install libpacparser1
+apt-get install libpacparser1
+
# Alternate install libdvdcss2 if needed
read -p "Verfügt der Rechner über ein DVD-Laufwerk bzw. sollen DVDs abgespielt werden könnne? (j/n)? " answer
case ${answer:0:1} in
@@ -163,7 +166,8 @@ mv /etc/NetworkManager/system-connections/SSID.in /etc/NetworkManager/system-con
# Set permissions on generated file
chmod go-rwx /etc/NetworkManager/system-connections/"$ssid"
-# Write new content for /usr/share/debian-edu-config/tools/wpad-extract
+# 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
@@ -183,7 +187,7 @@ 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
+/usr/share/debian-edu-config/tools/update-proxy-from-wpad
####################