* [Cluster-devel] [PATCH] rgmanager: OCF_NOT_INSTALLED is OK if we stop when stopped (RHEL5)
@ 2012-01-04 21:01 Lon Hohberger
2012-01-04 21:02 ` Lon Hohberger
0 siblings, 1 reply; 2+ messages in thread
From: Lon Hohberger @ 2012-01-04 21:01 UTC (permalink / raw)
To: cluster-devel.redhat.com
Scripts often live in file systems which are mounted by
rgmanager. This patch makes rgmanager ignore the
OCF_NOT_INSTALLED error returned from the script agent if
we attempt to stop when a start failed.
Furthermore, don't mark the resource as failed if a start
failure occurs due to the program not existing.
The combination of these create the ability for a missing
script to move to a node where the script exists, or be
placed in to the stopped state.
Resolves: rhbz#768146
Signed-off-by: Lon Hohberger <lhh@redhat.com>
Reviewed-by: Adam Drew <adrew@redhat.com>
Tested-by: Adam Drew <adrew@redhat.com>
---
rgmanager/src/daemons/restree.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/rgmanager/src/daemons/restree.c b/rgmanager/src/daemons/restree.c
index 697c7b1..367fbb3 100644
--- a/rgmanager/src/daemons/restree.c
+++ b/rgmanager/src/daemons/restree.c
@@ -519,6 +519,10 @@ res_exec(resource_node_t *node, int op, const char *arg, int depth)
ret = WEXITSTATUS(ret);
+ if (node->rn_state == RES_STOPPED &&
+ op == RS_STOP && ret == OCF_RA_NOT_INSTALLED)
+ ret = 0;
+
#ifndef NO_CCS
if ((op == RS_STATUS &&
node->rn_state == RES_STARTED && ret) ||
@@ -1523,7 +1527,8 @@ _res_op_internal(resource_node_t __attribute__ ((unused)) **tree,
}
node->rn_flags &= ~(RF_NEEDSTART | RF_RECONFIG);
if (rv != 0) {
- node->rn_state = RES_FAILED;
+ if (rv != OCF_RA_NOT_INSTALLED)
+ node->rn_state = RES_FAILED;
pthread_mutex_unlock(&node->rn_resource->r_mutex);
return SFL_FAILURE;
}
--
1.7.3.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Cluster-devel] [PATCH] rgmanager: OCF_NOT_INSTALLED is OK if we stop when stopped (RHEL5)
2012-01-04 21:01 [Cluster-devel] [PATCH] rgmanager: OCF_NOT_INSTALLED is OK if we stop when stopped (RHEL5) Lon Hohberger
@ 2012-01-04 21:02 ` Lon Hohberger
0 siblings, 0 replies; 2+ messages in thread
From: Lon Hohberger @ 2012-01-04 21:02 UTC (permalink / raw)
To: cluster-devel.redhat.com
On 01/04/2012 04:01 PM, Lon Hohberger wrote:
> Scripts often live in file systems which are mounted by
> rgmanager. This patch makes rgmanager ignore the
> OCF_NOT_INSTALLED error returned from the script agent if
> we attempt to stop when a start failed.
(Note that Adam already reviewed this off-list)
-- Lon
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-01-04 21:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-04 21:01 [Cluster-devel] [PATCH] rgmanager: OCF_NOT_INSTALLED is OK if we stop when stopped (RHEL5) Lon Hohberger
2012-01-04 21:02 ` Lon Hohberger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).