summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-02-13 21:16:03 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-02-13 21:16:03 +0100
commit8683e3fc3292f9cbc836f1f68c6d15968c1795b9 (patch)
treeb5b7cb15b8ac7337d7e29857bba8dd5c5e8493cb
parenteb28e3cfe9f07f4904b6f2c07b4ce5e7a6b11794 (diff)
downloaditzks-install-script-8683e3fc3292f9cbc836f1f68c6d15968c1795b9.tar.gz
itzks-install-script-8683e3fc3292f9cbc836f1f68c6d15968c1795b9.tar.bz2
itzks-install-script-8683e3fc3292f9cbc836f1f68c6d15968c1795b9.zip
apt_install_if_not: Always return true.
-rwxr-xr-xinstall-itzks-workstation2
1 files changed, 1 insertions, 1 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation
index 123a31e..ac5f933 100755
--- a/install-itzks-workstation
+++ b/install-itzks-workstation
@@ -13,7 +13,7 @@ function apt_install_if_not() {
for pkg in $pkgs; do
[ -d "/usr/share/doc/$pkg" ] || install_pkgs="$install_pkgs $pkg"
done
- test -n "$install_pkgs" && apt-get install -y $install_pkgs
+ test -n "$install_pkgs" && apt-get install -y $install_pkgs || true
}
# Add user locadm if not already there