diff options
-rw-r--r-- | install-itzks-workstation | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation index fe5b605..a08d52d 100644 --- a/install-itzks-workstation +++ b/install-itzks-workstation @@ -23,10 +23,9 @@ fi invoke-rc.d fetch-ldap-cert start # Add itzks.list and its contents if file not already there -if [ ! -e /etc/apt/sources.list.d/itzks.list ] - then +if [ ! -e "/etc/apt/sources.list.d/itzks.list" ]; then touch /etc/apt/sources.list.d/itzks.list - echo "deb http://packages.it-zukunft-schule.de/debian stretch main contrib non-free" > /etc/apt/sources.list.d/itzks.list + echo "deb http://packages.it-zukunft-schule.de/debian stretch main contrib non-free" >> /etc/apt/sources.list.d/itzks.list echo "deb http://packages.it-zukunft-schule.de/debian stretch-backports main contrib non-free" >> /etc/apt/sources.list.d/itzks.list echo "deb http://packages.it-zukunft-schule.de/debian sid main contrib non-free" >> /etc/apt/sources.list.d/itzks.list fi |