dff8d9929d
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
88 lines
3.7 KiB
Diff
88 lines
3.7 KiB
Diff
From: Andrew Beekhof <andrew@beekhof.net>
|
|
Date: Wed, 30 Sep 2015 17:33:00 +1000
|
|
Subject: [PATCH] Fix: crm_resource: Correctly update existing meta attributes
|
|
regardless of their position in the heirarchy
|
|
|
|
(cherry picked from commit f367348c832c64e2dc480dc96d2e0c2aa88639ba)
|
|
|
|
Conflicts:
|
|
tools/crm_resource_runtime.c
|
|
---
|
|
tools/crm_resource_runtime.c | 44 ++++++++++++++++++++++++++++++++++++--------
|
|
1 file changed, 36 insertions(+), 8 deletions(-)
|
|
|
|
diff --git a/tools/crm_resource_runtime.c b/tools/crm_resource_runtime.c
|
|
index ce9db01..a04adb9 100644
|
|
--- a/tools/crm_resource_runtime.c
|
|
+++ b/tools/crm_resource_runtime.c
|
|
@@ -213,10 +213,11 @@ cli_resource_update_attribute(const char *rsc_id, const char *attr_set, const ch
|
|
}
|
|
|
|
if (safe_str_eq(attr_set_type, XML_TAG_ATTR_SETS)) {
|
|
- rc = find_resource_attr(cib, XML_ATTR_ID, uber_parent(rsc)->id, XML_TAG_META_SETS, attr_set, attr_id,
|
|
- attr_name, &local_attr_id);
|
|
- if(rc == pcmk_ok && do_force == FALSE) {
|
|
- if (BE_QUIET == FALSE) {
|
|
+ if (do_force == FALSE) {
|
|
+ rc = find_resource_attr(cib, XML_ATTR_ID, uber_parent(rsc)->id,
|
|
+ XML_TAG_META_SETS, attr_set, attr_id,
|
|
+ attr_name, &local_attr_id);
|
|
+ if (rc == pcmk_ok && BE_QUIET == FALSE) {
|
|
printf("WARNING: There is already a meta attribute for '%s' called '%s' (id=%s)\n",
|
|
uber_parent(rsc)->id, attr_name, local_attr_id);
|
|
printf(" Delete '%s' first or use --force to override\n", local_attr_id);
|
|
@@ -224,7 +225,7 @@ cli_resource_update_attribute(const char *rsc_id, const char *attr_set, const ch
|
|
return -ENOTUNIQ;
|
|
}
|
|
|
|
- } else if(rsc->parent) {
|
|
+ } else if(rsc->parent && do_force == FALSE) {
|
|
|
|
switch(rsc->parent->variant) {
|
|
case pe_group:
|
|
@@ -234,14 +235,41 @@ cli_resource_update_attribute(const char *rsc_id, const char *attr_set, const ch
|
|
break;
|
|
case pe_master:
|
|
case pe_clone:
|
|
- rsc = rsc->parent;
|
|
- if (BE_QUIET == FALSE) {
|
|
- printf("Updating '%s' for '%s'...\n", rsc->id, rsc_id);
|
|
+
|
|
+ rc = find_resource_attr(cib, XML_ATTR_ID, rsc_id, attr_set_type, attr_set, attr_id, attr_name, &local_attr_id);
|
|
+ free(local_attr_id);
|
|
+
|
|
+ if(rc != pcmk_ok) {
|
|
+ rsc = rsc->parent;
|
|
+ if (BE_QUIET == FALSE) {
|
|
+ printf("Updating '%s' on '%s', the parent of '%s'\n", attr_name, rsc->id, rsc_id);
|
|
+ }
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
+
|
|
+ } else if (rsc->parent && BE_QUIET == FALSE) {
|
|
+ printf("Forcing update of '%s' for '%s' instead of '%s'\n", attr_name, rsc_id, rsc->parent->id);
|
|
+
|
|
+ } else if(rsc->parent == NULL && rsc->children) {
|
|
+ resource_t *child = rsc->children->data;
|
|
+
|
|
+ if(child->variant == pe_native) {
|
|
+ lookup_id = clone_strip(child->id); /* Could be a cloned group! */
|
|
+ rc = find_resource_attr(cib, XML_ATTR_ID, lookup_id, attr_set_type, attr_set, attr_id, attr_name, &local_attr_id);
|
|
+
|
|
+ if(rc == pcmk_ok) {
|
|
+ rsc = child;
|
|
+ if (BE_QUIET == FALSE) {
|
|
+ printf("A value for '%s' already exists in child '%s', updating that instead of '%s'\n", attr_name, lookup_id, rsc_id);
|
|
+ }
|
|
+ }
|
|
+
|
|
+ free(local_attr_id);
|
|
+ free(lookup_id);
|
|
+ }
|
|
}
|
|
|
|
lookup_id = clone_strip(rsc->id); /* Could be a cloned group! */
|