diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2015-07-20 11:45:34 +0200 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2015-07-20 11:45:34 +0200 |
commit | 83304bf41000cc28fdc27834638b5b76fc532f62 (patch) | |
tree | 15f6b5eb2e575807ddf531e7c575e43b2fb6dd54 /lib/support | |
parent | e5a12596abe48504737cb8633872794aa83ccb32 (diff) | |
parent | e9ef274bb24218f49d6a7e12210df223150434f7 (diff) | |
download | gitlab-ce-83304bf41000cc28fdc27834638b5b76fc532f62.tar.gz |
Merge pull request #9400 from tuxillo/patch-1
Use whoami instead of $USER
Diffstat (limited to 'lib/support')
-rwxr-xr-x | lib/support/init.d/gitlab | 2 |
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 |