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
No known key found for this signature in database
GPG Key ID: 2076B128385E8C55
1 changed files with
5 additions and
0 deletions
-
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 |
|
|
|
|
|
|
|