summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2015-07-20 11:45:34 +0200
committerJacob Vosmaer <contact@jacobvosmaer.nl>2015-07-20 11:45:34 +0200
commit83304bf41000cc28fdc27834638b5b76fc532f62 (patch)
tree15f6b5eb2e575807ddf531e7c575e43b2fb6dd54
parente5a12596abe48504737cb8633872794aa83ccb32 (diff)
parente9ef274bb24218f49d6a7e12210df223150434f7 (diff)
downloadgitlab-ce-83304bf41000cc28fdc27834638b5b76fc532f62.tar.gz
Merge pull request #9400 from tuxillo/patch-1
Use whoami instead of $USER
-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