diff options
author | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-24 14:57:36 +0100 |
---|---|---|
committer | Benjamin Schlüter <bschlueter@posteo.de> | 2018-01-24 14:57:36 +0100 |
commit | 6097a710eaba702fad0b4671ba47db93b837f4c8 (patch) | |
tree | e10bd6b87c235a22c6bf07d8d0c2d035108d87e1 /install-itzks-workstation | |
parent | e07bad4b97beee5cffceb9c00edd5e1f94be3dbb (diff) | |
download | itzks-install-script-6097a710eaba702fad0b4671ba47db93b837f4c8.tar.gz itzks-install-script-6097a710eaba702fad0b4671ba47db93b837f4c8.tar.bz2 itzks-install-script-6097a710eaba702fad0b4671ba47db93b837f4c8.zip |
Fix syntax error.
Diffstat (limited to 'install-itzks-workstation')
-rw-r--r-- | install-itzks-workstation | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation index bd5f48d..0654750 100644 --- a/install-itzks-workstation +++ b/install-itzks-workstation @@ -6,7 +6,7 @@ # adduser locadm sudo # Alternate script: Only add user locadm if not already there -if [ -z $(getent passwd locadm) ]; +if [ -z $"(getent passwd locadm)" ]; then : else |