diff options
author | Valeriy Sizov <vsv2711@gmail.com> | 2015-01-07 17:12:09 -0800 |
---|---|---|
committer | Valeriy Sizov <vsv2711@gmail.com> | 2015-01-07 17:12:09 -0800 |
commit | 1d9a1fc983c8134a8ab9766a204c1651f460154f (patch) | |
tree | 76e46279c806cf7c4b6860d7f7044adf3dd7b1c7 /lib | |
parent | 54e6c5ae362790f597a8be110895bed0a660f238 (diff) | |
parent | 5f759cca9e451e4164aef115cead841ddf45f0ec (diff) | |
download | gitlab-ci-1d9a1fc983c8134a8ab9766a204c1651f460154f.tar.gz |
Merge pull request #431 from Wachiwi/patch-1
Changed sudo by su -c
Diffstat (limited to 'lib')
-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. |