diff options
author | Wachiwi <Wachiwi@users.noreply.github.com> | 2014-05-13 14:19:34 +0200 |
---|---|---|
committer | Wachiwi <Wachiwi@users.noreply.github.com> | 2014-05-13 14:19:34 +0200 |
commit | 5f759cca9e451e4164aef115cead841ddf45f0ec (patch) | |
tree | fe45dd084c0cd4019131e2abaa8baf4579c10239 | |
parent | aa181ba68e157574cfeeaf0510213ce7ce4e39ed (diff) | |
download | gitlab-ci-5f759cca9e451e4164aef115cead841ddf45f0ec.tar.gz |
Changed sudo by su -c
See PR #5935 in gitlabhq/gitlabhq for more details
-rwxr-xr-x | lib/support/init.d/gitlab_ci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/support/init.d/gitlab_ci b/lib/support/init.d/gitlab_ci index a8893ae..ccd93b7 100755 --- a/lib/support/init.d/gitlab_ci +++ b/lib/support/init.d/gitlab_ci @@ -39,7 +39,7 @@ test -f /etc/default/gitlab-ci && . /etc/default/gitlab-ci # 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. |