diff options
author | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-30 13:50:41 +0100 |
---|---|---|
committer | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-30 13:50:41 +0100 |
commit | 3ae50f4a99e89a60a89de2102c301a3c90c4da4c (patch) | |
tree | 7d84718afea99ae93e16202d9c75aa0924e570c6 /install-itzks-workstation | |
parent | f0fe216e8cdc90e0e9b18c4ac33a50d789257e9d (diff) | |
download | itzks-install-script-3ae50f4a99e89a60a89de2102c301a3c90c4da4c.tar.gz itzks-install-script-3ae50f4a99e89a60a89de2102c301a3c90c4da4c.tar.bz2 itzks-install-script-3ae50f4a99e89a60a89de2102c301a3c90c4da4c.zip |
Fix syntax erros.
Diffstat (limited to 'install-itzks-workstation')
-rw-r--r-- | install-itzks-workstation | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation index b1b2b5f..8e55dd5 100644 --- a/install-itzks-workstation +++ b/install-itzks-workstation @@ -181,9 +181,9 @@ cat <<EOT > /usr/share/debian-edu-config/tools/wpad-extract # 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 - \ +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 +echo http_proxy=http://\$proxy_url EOT # Run /usr/share/debian-edu-config/tools/update-proxy-from-wpad |