Skip to content

Commit

Permalink
Merge pull request mozilla-services#443 from rhelmer/bug729665-init-k…
Browse files Browse the repository at this point in the history
…illproc-too-impatient

bug 729665 - make killproc wait 10s instead of the default 5s, to give p...
  • Loading branch information
rhelmer committed Mar 20, 2012
2 parents 9f48a16 + 9ea12a4 commit fdbc804
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/init.d/socorro-crashmover
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ start() {

stop() {
echo -n $"Stopping ${progname}: "
killproc -p ${pidfile} ${python}
killproc -t 10 -p ${pidfile} ${python}
RETVAL=$?
echo
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/init.d/socorro-monitor
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ start() {

stop() {
echo -n $"Stopping ${progname}: "
killproc -p ${pidfile} ${python}
killproc -t 10 -p ${pidfile} ${python}
RETVAL=$?
echo
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/init.d/socorro-processor
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ start() {

stop() {
echo -n $"Stopping ${progname}: "
killproc -p ${pidfile} ${python}
killproc -t 10 -p ${pidfile} ${python}
RETVAL=$?
echo
}
Expand Down

0 comments on commit fdbc804

Please sign in to comment.