diff options
author | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-23 17:00:18 +0100 |
---|---|---|
committer | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-23 17:00:18 +0100 |
commit | 5d0b79b6ca2a1780d49186bb47bd1dc31aa8ce11 (patch) | |
tree | 16314e3884fb4555dba789093ada96274d8c31f8 | |
parent | 38048b768b12db6392a0213e14a5dbed29c3213f (diff) | |
download | itzks-install-script-5d0b79b6ca2a1780d49186bb47bd1dc31aa8ce11.tar.gz itzks-install-script-5d0b79b6ca2a1780d49186bb47bd1dc31aa8ce11.tar.bz2 itzks-install-script-5d0b79b6ca2a1780d49186bb47bd1dc31aa8ce11.zip |
itzks-installscript: Fix typo in path to itzks.list file.
-rw-r--r-- | install-itzks-workstation | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation index 77ba033..edeff11 100644 --- a/install-itzks-workstation +++ b/install-itzks-workstation @@ -1,6 +1,9 @@ #!/bin/bash # script for installing a Debian Edu Workstation with ITZkS modifications +set -e +set -x + # Add user locadm as "local adminstrator" and add this user to sudoer-group adduser --gecos "Local Administrator" locadm adduser locadm sudo @@ -20,8 +23,8 @@ invoke-rc.d fetch-ldap-cert start # Add itzks-package repo 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.listapt-get update +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 # Get update and add itzks-keyring and itzks-systems-common package apt-get update |