summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Huete Jimenez <tuxillo@quantumachine.net>2015-06-19 09:01:35 +0200
committerAntonio Huete Jimenez <tuxillo@quantumachine.net>2015-06-19 09:01:35 +0200
commite9ef274bb24218f49d6a7e12210df223150434f7 (patch)
tree9060654c29c76af59f5ec11fe8797617b4ddc4eb
parentdb915f7aba456bbff935f0cc0ad294dbc4dfd71b (diff)
downloadgitlab-ce-e9ef274bb24218f49d6a7e12210df223150434f7.tar.gz
Use whoami instead of $USER
- Use whoami instead of relying on the existence of $USER enviroment variable which is not always present
-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