diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-02-09 15:16:42 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-02-09 15:16:42 +0100 |
commit | 16e03bfd7c17d53ab0c7b55dc2136c89d2e5dcb0 (patch) | |
tree | 2fb4774223cc6ffcd3be1903ae0fd5aa278b7de4 /install-itzks-workstation | |
parent | 99c413c54422c058454478860f95eaef78bc1833 (diff) | |
download | itzks-install-script-16e03bfd7c17d53ab0c7b55dc2136c89d2e5dcb0.tar.gz itzks-install-script-16e03bfd7c17d53ab0c7b55dc2136c89d2e5dcb0.tar.bz2 itzks-install-script-16e03bfd7c17d53ab0c7b55dc2136c89d2e5dcb0.zip |
Set -x bash option. Not only for debugging, but also for normal runs.
Diffstat (limited to 'install-itzks-workstation')
-rw-r--r-- | install-itzks-workstation | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/install-itzks-workstation b/install-itzks-workstation index 419a7fa..79dc814 100644 --- a/install-itzks-workstation +++ b/install-itzks-workstation @@ -3,6 +3,9 @@ set -e +# we want to see the commands being issued during script run +set -x + # Add user locadm if not already there if [ -z $"(getent passwd locadm)" ]; then adduser --gecos "Local Administrator" locadm |