Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Huete Jimenez <tuxillo@quantumachine.net>2015-06-19 10:01:35 +0300
committerAntonio Huete Jimenez <tuxillo@quantumachine.net>2015-06-19 10:01:35 +0300
commite9ef274bb24218f49d6a7e12210df223150434f7 (patch)
tree9060654c29c76af59f5ec11fe8797617b4ddc4eb /lib/support
parentdb915f7aba456bbff935f0cc0ad294dbc4dfd71b (diff)
Use whoami instead of $USER
- Use whoami instead of relying on the existence of $USER enviroment variable which is not always present
Diffstat (limited to 'lib/support')
-rwxr-xr-xlib/support/init.d/gitlab2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/support/init.d/gitlab b/lib/support/init.d/gitlab
index 946902e2f6d..a3455728a94 100755
--- a/lib/support/init.d/gitlab
+++ b/lib/support/init.d/gitlab
@@ -41,7 +41,7 @@ shell_path="/bin/bash"
test -f /etc/default/gitlab && . /etc/default/gitlab
# Switch to the app_user if it is not he/she who is running the script.
-if [ "$USER" != "$app_user" ]; then
+if [ `whoami` != "$app_user" ]; then
eval su - "$app_user" -s $shell_path -c $(echo \")$0 "$@"$(echo \"); exit;
fi