[OpenSRF-GIT] OpenSRF branch master updated. 40a753b10a3db58baa9179d75a76df1266589ea1

Evergreen Git git at git.evergreen-ils.org
Wed Oct 19 11:40:52 EDT 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OpenSRF".

The branch, master has been updated
       via  40a753b10a3db58baa9179d75a76df1266589ea1 (commit)
      from  07b5a335656be741353ab70c1d4717dacdbebc1b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 40a753b10a3db58baa9179d75a76df1266589ea1
Author: Dan Scott <dscott at laurentian.ca>
Date:   Wed Oct 19 11:39:41 2011 -0400

    LP878284: stop_osrf action should stop, not start, Perl
    
    As reported by Vicent Mas <uvemas at gmail.com> to the Evergreen
    developer's mailing list:
    
    """
    It seems I've found a small bug in the
    /openils/bin/osrf_ctl.sh script. The line for the osrf_stop action is:
    
    "stop_osrf") stop_python; stop_c; start_perl;;
    
    but should be:
    
    "stop_osrf") stop_python; stop_c; stop_perl;;
    """
    
    Signed-off-by: Dan Scott <dscott at laurentian.ca>

diff --git a/bin/osrf_ctl.sh.in b/bin/osrf_ctl.sh.in
index 23a3fc7..be80541 100755
--- a/bin/osrf_ctl.sh.in
+++ b/bin/osrf_ctl.sh.in
@@ -290,7 +290,7 @@ case $OPT_ACTION in
 	"stop_c") stop_c;;
 	"restart_c") stop_c; start_c;;
 	"start_osrf") start_perl; start_c; start_python;;
-	"stop_osrf") stop_python; stop_c; start_perl;;
+	"stop_osrf") stop_python; stop_c; stop_perl;;
 	"restart_osrf") stop_python; stop_c; stop_perl; start_perl; start_c; start_python;;
 	"stop_all") stop_python; stop_c; stop_perl; stop_router;;
 	"start_all") start_router; start_perl; start_c; start_python;;

-----------------------------------------------------------------------

Summary of changes:
 bin/osrf_ctl.sh.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
OpenSRF


More information about the opensrf-commits mailing list