You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by vm...@apache.org on 2015/09/10 22:14:02 UTC

svn commit: r1702315 - in /oodt/trunk: CHANGES.txt resource/src/main/bin/resmgr workflow/src/main/bin/wmgr

Author: vmallder
Date: Thu Sep 10 20:14:02 2015
New Revision: 1702315

URL: http://svn.apache.org/r1702315
Log:
Implmentation of OODT-874

Modified:
    oodt/trunk/CHANGES.txt
    oodt/trunk/resource/src/main/bin/resmgr
    oodt/trunk/workflow/src/main/bin/wmgr

Modified: oodt/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/oodt/trunk/CHANGES.txt?rev=1702315&r1=1702314&r2=1702315&view=diff
==============================================================================
--- oodt/trunk/CHANGES.txt (original)
+++ oodt/trunk/CHANGES.txt Thu Sep 10 20:14:02 2015
@@ -2,6 +2,10 @@ Apache OODT Change Log
 ======================
 Release 0.11 - Current Development
 
+* OODT-874 Corrected workflow/bin/wmgr and resource/bin/resmgr to make sure
+  they both delete the cas.xxxx.pid file when stopped using the 'stop'
+  command. (mallder)
+
 * OODT-872 Upgrade Jena dependencies to org.apache.jena 3.0.0 (lewismc, mattmann)
 
 Release 0.10 - 08/30/2015

Modified: oodt/trunk/resource/src/main/bin/resmgr
URL: http://svn.apache.org/viewvc/oodt/trunk/resource/src/main/bin/resmgr?rev=1702315&r1=1702314&r2=1702315&view=diff
==============================================================================
--- oodt/trunk/resource/src/main/bin/resmgr (original)
+++ oodt/trunk/resource/src/main/bin/resmgr Thu Sep 10 20:14:02 2015
@@ -59,6 +59,7 @@ case "$1" in
   stop)
         echo -n "Shutting down cas resource manager: "
         kill `cat ${RUN_HOME}/cas.resmgr.pid`
+        rm -f ${RUN_HOME}/cas.resmgr.pid
         echo "OK"
         ;;
   restart)

Modified: oodt/trunk/workflow/src/main/bin/wmgr
URL: http://svn.apache.org/viewvc/oodt/trunk/workflow/src/main/bin/wmgr?rev=1702315&r1=1702314&r2=1702315&view=diff
==============================================================================
--- oodt/trunk/workflow/src/main/bin/wmgr (original)
+++ oodt/trunk/workflow/src/main/bin/wmgr Thu Sep 10 20:14:02 2015
@@ -61,6 +61,7 @@ case "$1" in
   stop)
         echo -n "Shutting down cas workflow manager: "
         kill `cat ${RUN_HOME}/cas.workflow.pid`
+        rm -f ${RUN_HOME}/cas.workflow.pid
         echo "OK"
         ;;
   restart)