Browse Source

fix: set $USER if missing

$USER is not available in sh which is used by cron.
pull/4319/head
Daniel Gibbs 2 years ago
parent
commit
4a02dfd382
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 5
      lgsm/modules/core_modules.sh

5
lgsm/modules/core_modules.sh

@ -816,6 +816,11 @@ if [ ! -d "${lockdir}" ]; then
mkdir -p "${lockdir}"
fi
# if $USER id missing set to whoami
if [ -z "${USER}" ]; then
USER="$(whoami)"
fi
# Calls on-screen messages (bootstrap)
core_messages.sh

Loading…
Cancel
Save