diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2014-03-25 15:06:54 +0100 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2014-03-25 15:06:54 +0100 |
commit | 306d4ee728e68e1cbc3e63b56ff2d7912bb5605f (patch) | |
tree | bb2ed033909139a4d336ba23d95891a8cc78362d /lib/support | |
parent | 80daf9a7774fd757a8838f0b49b6384ec7ceb724 (diff) | |
parent | 6daa97f47212d89bfa0dcbb7f549ecb68d1b3783 (diff) | |
download | gitlab-ce-306d4ee728e68e1cbc3e63b56ff2d7912bb5605f.tar.gz |
Merge pull request #5935 from nmoura/patch-1
Changed sudo by su -c in init script
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 c6e570784e0..ff584e69058 100755 --- a/lib/support/init.d/gitlab +++ b/lib/support/init.d/gitlab @@ -40,7 +40,7 @@ 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 - sudo -u "$app_user" -H -i $0 "$@"; exit; + eval su - "$app_user" -c $(echo \")$0 "$@"$(echo \"); exit; fi # Switch to the gitlab path, exit on failure. |