Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Privacy
Imprint
Contact
Login methods
Sign in
Toggle navigation
Menu
Open sidebar
projects.thm.de
GitLab
Commits
306d4ee7
Commit
306d4ee7
authored
Mar 25, 2014
by
Jacob Vosmaer
Browse files
Merge pull request #5935 from nmoura/patch-1
Changed sudo by su -c in init script
parents
80daf9a7
6daa97f4
Changes
1
Show whitespace changes
Inline
Side-by-side
lib/support/init.d/gitlab
View file @
306d4ee7
...
...
@@ -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
su
do
-
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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment