Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
78b3fb76
Commit
78b3fb76
authored
Oct 07, 2013
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Run stopping commands in the foreground
parent
1a6ba7e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/support/init.d/gitlab
lib/support/init.d/gitlab
+2
-2
No files found.
lib/support/init.d/gitlab
View file @
78b3fb76
...
@@ -151,7 +151,7 @@ stop() {
...
@@ -151,7 +151,7 @@ stop() {
exit_if_not_running
exit_if_not_running
# If the Unicorn web server is running, tell it to stop;
# If the Unicorn web server is running, tell it to stop;
if
[
"
$web_status
"
=
"0"
]
;
then
if
[
"
$web_status
"
=
"0"
]
;
then
kill
-QUIT
"
$wpid
"
&
kill
-QUIT
"
$wpid
"
echo
"Stopping the GitLab Unicorn web server..."
echo
"Stopping the GitLab Unicorn web server..."
stopping
=
true
stopping
=
true
else
else
...
@@ -160,7 +160,7 @@ stop() {
...
@@ -160,7 +160,7 @@ stop() {
# And do the same thing for the Sidekiq.
# And do the same thing for the Sidekiq.
if
[
"
$sidekiq_status
"
=
"0"
]
;
then
if
[
"
$sidekiq_status
"
=
"0"
]
;
then
printf
"Stopping Sidekiq job dispatcher."
printf
"Stopping Sidekiq job dispatcher."
RAILS_ENV
=
$RAILS_ENV
bundle
exec
rake sidekiq:stop
&
RAILS_ENV
=
$RAILS_ENV
bundle
exec
rake sidekiq:stop
stopping
=
true
stopping
=
true
else
else
echo
"The Sidekiq was not running, must have run out of breath."
echo
"The Sidekiq was not running, must have run out of breath."
...
...
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