diff options
author | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-23 17:05:12 +0100 |
---|---|---|
committer | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-23 17:05:12 +0100 |
commit | 684acf7ec9c1553ae0c750da42f51bf1c52622a5 (patch) | |
tree | ded9636d7c68ae9e4af508778a184c2d00099c96 | |
parent | 5d0b79b6ca2a1780d49186bb47bd1dc31aa8ce11 (diff) | |
download | itzks-install-script-684acf7ec9c1553ae0c750da42f51bf1c52622a5.tar.gz itzks-install-script-684acf7ec9c1553ae0c750da42f51bf1c52622a5.tar.bz2 itzks-install-script-684acf7ec9c1553ae0c750da42f51bf1c52622a5.zip |
itzks-installscript: Add proxy-export for https, http and ftp.
-rw-r--r-- | install-itzks-workstation | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation index edeff11..8499db2 100644 --- a/install-itzks-workstation +++ b/install-itzks-workstation @@ -26,6 +26,11 @@ touch /etc/apt/sources.list.d/itzks.list echo "deb http://packages.it-zukunft-schule.de/debian jessie main contrib non-free" >> /etc/apt/sources.list.d/itzks.list echo "deb http://packages.it-zukunft-schule.de/debian jessie-backports main contrib non-free" >> /etc/apt/sources.list.d/itzks.list +# Export proxy-settings for first install +export http_proxy=http://webcache:3128 +export https_proxy=http://webcache:3128 +export ftp_proxy=http://webcache:3128 + # Get update and add itzks-keyring and itzks-systems-common package apt-get update apt-get install itzks-keyring && apt-get update && apt-get install itzks-systems-common |