Skip to content

Commit

Permalink
bug 729665 - killproc cares about position of args
Browse files Browse the repository at this point in the history
  • Loading branch information
rhelmer committed Mar 21, 2012
1 parent 3b48120 commit 6068367
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 -d 10 -p ${pidfile} ${python}
killproc -p ${pidfile} -d 10 ${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 -d 10 -p ${pidfile} ${python}
killproc -p ${pidfile} -d 10 ${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 -d 10 -p ${pidfile} ${python}
killproc -p ${pidfile} -d 10 ${python}
RETVAL=$?
echo
}
Expand Down

0 comments on commit 6068367

Please sign in to comment.