diff --git a/pengine/master.c b/pengine/master.c index 7af1936156..77a82e637f 100644 --- a/pengine/master.c +++ b/pengine/master.c @@ -1,1000 +1,1004 @@ /* * Copyright (C) 2004 Andrew Beekhof * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include #include #include #include #define VARIANT_CLONE 1 #include extern gint sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set); extern int master_score(resource_t * rsc, node_t * node, int not_set_value); static void child_promoting_constraints(clone_variant_data_t * clone_data, enum pe_ordering type, resource_t * rsc, resource_t * child, resource_t * last, pe_working_set_t * data_set) { if (child == NULL) { if (clone_data->ordered && last != NULL) { crm_trace("Ordered version (last node)"); /* last child promote before promoted started */ new_rsc_order(last, RSC_PROMOTE, rsc, RSC_PROMOTED, type, data_set); } return; } /* child promote before global promoted */ new_rsc_order(child, RSC_PROMOTE, rsc, RSC_PROMOTED, type, data_set); /* global promote before child promote */ new_rsc_order(rsc, RSC_PROMOTE, child, RSC_PROMOTE, type, data_set); if (clone_data->ordered) { crm_trace("Ordered version"); if (last == NULL) { /* global promote before first child promote */ last = rsc; } /* else: child/child relative promote */ order_start_start(last, child, type); new_rsc_order(last, RSC_PROMOTE, child, RSC_PROMOTE, type, data_set); } else { crm_trace("Un-ordered version"); } } static void child_demoting_constraints(clone_variant_data_t * clone_data, enum pe_ordering type, resource_t * rsc, resource_t * child, resource_t * last, pe_working_set_t * data_set) { if (child == NULL) { if (clone_data->ordered && last != NULL) { crm_trace("Ordered version (last node)"); /* global demote before first child demote */ new_rsc_order(rsc, RSC_DEMOTE, last, RSC_DEMOTE, pe_order_optional, data_set); } return; } /* child demote before global demoted */ new_rsc_order(child, RSC_DEMOTE, rsc, RSC_DEMOTED, pe_order_implies_then_printed, data_set); /* global demote before child demote */ new_rsc_order(rsc, RSC_DEMOTE, child, RSC_DEMOTE, pe_order_implies_first_printed, data_set); if (clone_data->ordered && last != NULL) { crm_trace("Ordered version"); /* child/child relative demote */ new_rsc_order(child, RSC_DEMOTE, last, RSC_DEMOTE, type, data_set); } else if (clone_data->ordered) { crm_trace("Ordered version (1st node)"); /* first child stop before global stopped */ new_rsc_order(child, RSC_DEMOTE, rsc, RSC_DEMOTED, type, data_set); } else { crm_trace("Un-ordered version"); } } static void master_update_pseudo_status(resource_t * rsc, gboolean * demoting, gboolean * promoting) { GListPtr gIter = NULL; if (rsc->children) { gIter = rsc->children; for (; gIter != NULL; gIter = gIter->next) { resource_t *child = (resource_t *) gIter->data; master_update_pseudo_status(child, demoting, promoting); } return; } CRM_ASSERT(demoting != NULL); CRM_ASSERT(promoting != NULL); gIter = rsc->actions; for (; gIter != NULL; gIter = gIter->next) { action_t *action = (action_t *) gIter->data; if (*promoting && *demoting) { return; } else if (is_set(action->flags, pe_action_optional)) { continue; } else if (safe_str_eq(RSC_DEMOTE, action->task)) { *demoting = TRUE; } else if (safe_str_eq(RSC_PROMOTE, action->task)) { *promoting = TRUE; } } } #define apply_master_location(list) do { \ gIter2 = list; \ for(; gIter2 != NULL; gIter2 = gIter2->next) { \ rsc_to_node_t *cons = (rsc_to_node_t*)gIter2->data; \ \ cons_node = NULL; \ if(cons->role_filter == RSC_ROLE_MASTER) { \ crm_trace("Applying %s to %s", \ cons->id, child_rsc->id); \ cons_node = pe_find_node_id( \ cons->node_list_rh, chosen->details->id); \ } \ if(cons_node != NULL) { \ int new_priority = merge_weights( \ child_rsc->priority, cons_node->weight); \ crm_trace("\t%s: %d->%d (%d)", child_rsc->id, \ child_rsc->priority, new_priority, cons_node->weight); \ child_rsc->priority = new_priority; \ } \ } \ } while(0) static node_t * can_be_master(resource_t * rsc) { node_t *node = NULL; node_t *local_node = NULL; resource_t *parent = uber_parent(rsc); clone_variant_data_t *clone_data = NULL; #if 0 enum rsc_role_e role = RSC_ROLE_UNKNOWN; role = rsc->fns->state(rsc, FALSE); crm_info("%s role: %s", rsc->id, role2text(role)); #endif if (rsc->children) { GListPtr gIter = rsc->children; for (; gIter != NULL; gIter = gIter->next) { resource_t *child = (resource_t *) gIter->data; if (can_be_master(child) == NULL) { crm_trace( "Child %s of %s can't be promoted", child->id, rsc->id); return NULL; } } } node = rsc->fns->location(rsc, NULL, FALSE); if (node == NULL) { crm_trace( "%s cannot be master: not allocated", rsc->id); return NULL; } else if (is_not_set(rsc->flags, pe_rsc_managed)) { if (rsc->fns->state(rsc, TRUE) == RSC_ROLE_MASTER) { crm_notice("Forcing unmanaged master %s to remain promoted on %s", rsc->id, node->details->uname); } else { return NULL; } } else if (rsc->priority < 0) { crm_trace( "%s cannot be master: preference: %d", rsc->id, rsc->priority); return NULL; } else if (can_run_resources(node) == FALSE) { crm_trace( "Node cant run any resources: %s", node->details->uname); return NULL; } get_clone_variant_data(clone_data, parent); local_node = pe_hash_table_lookup(parent->allowed_nodes, node->details->id); if (local_node == NULL) { crm_err("%s cannot run on %s: node not allowed", rsc->id, node->details->uname); return NULL; } else if (local_node->count < clone_data->master_node_max || is_not_set(rsc->flags, pe_rsc_managed)) { return local_node; } else { crm_trace( "%s cannot be master on %s: node full", rsc->id, node->details->uname); } return NULL; } static gint sort_master_instance(gconstpointer a, gconstpointer b, gpointer data_set) { int rc; enum rsc_role_e role1 = RSC_ROLE_UNKNOWN; enum rsc_role_e role2 = RSC_ROLE_UNKNOWN; const resource_t *resource1 = (const resource_t *)a; const resource_t *resource2 = (const resource_t *)b; CRM_ASSERT(resource1 != NULL); CRM_ASSERT(resource2 != NULL); role1 = resource1->fns->state(resource1, TRUE); role2 = resource2->fns->state(resource2, TRUE); rc = sort_rsc_index(a, b); if (rc != 0) { crm_trace("%s %c %s (index)", resource1->id, rc < 0 ? '<' : '>', resource2->id); return rc; } if (role1 > role2) { crm_trace("%s %c %s (role)", resource1->id, '<', resource2->id); return -1; } else if (role1 < role2) { crm_trace("%s %c %s (role)", resource1->id, '>', resource2->id); return 1; } return sort_clone_instance(a, b, data_set); } static void master_promotion_order(resource_t * rsc, pe_working_set_t * data_set) { GListPtr gIter = NULL; node_t *node = NULL; node_t *chosen = NULL; clone_variant_data_t *clone_data = NULL; get_clone_variant_data(clone_data, rsc); if (clone_data->merged_master_weights) { return; } clone_data->merged_master_weights = TRUE; crm_trace("Merging weights for %s", rsc->id); set_bit(rsc->flags, pe_rsc_merging); gIter = rsc->children; for (; gIter != NULL; gIter = gIter->next) { resource_t *child = (resource_t *) gIter->data; crm_trace("Sort index: %s = %d", child->id, child->sort_index); } dump_node_scores(LOG_DEBUG_3, rsc, "Before", rsc->allowed_nodes); gIter = rsc->children; for (; gIter != NULL; gIter = gIter->next) { resource_t *child = (resource_t *) gIter->data; chosen = child->fns->location(child, NULL, FALSE); if (chosen == NULL || child->sort_index < 0) { crm_trace("Skipping %s", child->id); continue; } node = (node_t *) pe_hash_table_lookup(rsc->allowed_nodes, chosen->details->id); CRM_ASSERT(node != NULL); /* adds in master preferences and rsc_location.role=Master */ crm_trace("Adding %s to %s from %s", score2char(child->sort_index), node->details->uname, child->id); node->weight = merge_weights(child->sort_index, node->weight); } dump_node_scores(LOG_DEBUG_3, rsc, "Middle", rsc->allowed_nodes); gIter = rsc->rsc_cons; for (; gIter != NULL; gIter = gIter->next) { rsc_colocation_t *constraint = (rsc_colocation_t *) gIter->data; /* (re-)adds location preferences of resources that the * master instance should/must be colocated with */ if (constraint->role_lh == RSC_ROLE_MASTER) { crm_trace("RHS: %s with %s: %d", constraint->rsc_lh->id, constraint->rsc_rh->id, constraint->score); rsc->allowed_nodes = constraint->rsc_rh->cmds->merge_weights(constraint->rsc_rh, rsc->id, rsc->allowed_nodes, constraint->node_attribute, constraint->score / INFINITY, constraint->score == INFINITY ? FALSE : TRUE, FALSE); } } gIter = rsc->rsc_cons_lhs; for (; gIter != NULL; gIter = gIter->next) { rsc_colocation_t *constraint = (rsc_colocation_t *) gIter->data; /* (re-)adds location preferences of resource that wish to be * colocated with the master instance */ if (constraint->role_rh == RSC_ROLE_MASTER) { crm_trace("LHS: %s with %s: %d", constraint->rsc_lh->id, constraint->rsc_rh->id, constraint->score); rsc->allowed_nodes = constraint->rsc_lh->cmds->merge_weights(constraint->rsc_lh, rsc->id, rsc->allowed_nodes, constraint->node_attribute, constraint->score / INFINITY, TRUE, TRUE); } } gIter = rsc->rsc_tickets; for (; gIter != NULL; gIter = gIter->next) { rsc_ticket_t *rsc_ticket = (rsc_ticket_t *) gIter->data; if (rsc_ticket->role_lh == RSC_ROLE_MASTER && (rsc_ticket->ticket->granted == FALSE || rsc_ticket->ticket->standby)) { resource_location(rsc, NULL, -INFINITY, "__stateful_without_ticket__", data_set); } } dump_node_scores(LOG_DEBUG_3, rsc, "After", rsc->allowed_nodes); /* write them back and sort */ gIter = rsc->children; for (; gIter != NULL; gIter = gIter->next) { resource_t *child = (resource_t *) gIter->data; chosen = child->fns->location(child, NULL, FALSE); if (is_not_set(child->flags, pe_rsc_managed) && child->next_role == RSC_ROLE_MASTER) { child->sort_index = INFINITY; } else if (chosen == NULL || child->sort_index < 0) { crm_trace("%s: %d", child->id, child->sort_index); } else { node = (node_t *) pe_hash_table_lookup(rsc->allowed_nodes, chosen->details->id); CRM_ASSERT(node != NULL); child->sort_index = node->weight; } crm_trace("Set sort index: %s = %d", child->id, child->sort_index); } rsc->children = g_list_sort_with_data(rsc->children, sort_master_instance, data_set); clear_bit(rsc->flags, pe_rsc_merging); } int master_score(resource_t * rsc, node_t * node, int not_set_value) { char *attr_name; char *name = rsc->id; const char *attr_value = NULL; int score = not_set_value, len = 0; if (rsc->children) { GListPtr gIter = rsc->children; for (; gIter != NULL; gIter = gIter->next) { resource_t *child = (resource_t *) gIter->data; int c_score = master_score(child, node, not_set_value); if (score == not_set_value) { score = c_score; } else { score += c_score; } } return score; } - if (rsc->fns->state(rsc, TRUE) < RSC_ROLE_STARTED) { - return score; - } + if (node == NULL) { + if(rsc->fns->state(rsc, TRUE) < RSC_ROLE_STARTED) { + crm_trace("Ingoring master score for %s: unknown state on %s", + rsc->id, node->details->uname); + return score; + } - if (node != NULL) { + } else { node_t *match = pe_find_node_id(rsc->running_on, node->details->id); + node_t *known = pe_hash_table_lookup(rsc->known_on, node->details->id); - if (match == NULL) { + if (match == NULL && known == NULL) { crm_trace("%s is not active on %s - ignoring", rsc->id, node->details->uname); return score; } match = pe_hash_table_lookup(rsc->allowed_nodes, node->details->id); if (match == NULL) { return score; } else if (match->weight < 0) { crm_trace("%s on %s has score: %d - ignoring", rsc->id, match->details->uname, match->weight); return score; } } if (rsc->clone_name) { /* Use the name the lrm knows this resource as, * since that's what crm_master would have used too */ name = rsc->clone_name; } len = 8 + strlen(name); crm_malloc0(attr_name, len); sprintf(attr_name, "master-%s", name); if (node) { attr_value = g_hash_table_lookup(node->details->attrs, attr_name); crm_trace("%s: %s[%s] = %s", rsc->id, attr_name, node->details->uname, crm_str(attr_value)); } if (attr_value != NULL) { score = char2score(attr_value); } crm_free(attr_name); return score; } #define max(a, b) achildren; clone_variant_data_t *clone_data = NULL; get_clone_variant_data(clone_data, rsc); if (clone_data->applied_master_prefs) { /* Make sure we only do this once */ return; } clone_data->applied_master_prefs = TRUE; for (; gIter != NULL; gIter = gIter->next) { GHashTableIter iter; node_t *node = NULL; resource_t *child_rsc = (resource_t *) gIter->data; g_hash_table_iter_init(&iter, child_rsc->allowed_nodes); while (g_hash_table_iter_next(&iter, NULL, (void **)&node)) { if (can_run_resources(node) == FALSE) { /* This node will never be promoted to master, * so don't apply the master score as that may * lead to clone shuffling */ continue; } score = master_score(child_rsc, node, 0); if (score > 0) { new_score = merge_weights(node->weight, score); if (new_score != node->weight) { crm_trace("\t%s: Updating preference for %s (%d->%d)", child_rsc->id, node->details->uname, node->weight, new_score); node->weight = new_score; } } new_score = max(child_rsc->priority, score); if (new_score != child_rsc->priority) { crm_trace("\t%s: Updating priority (%d->%d)", child_rsc->id, child_rsc->priority, new_score); child_rsc->priority = new_score; } } } } static void set_role_slave(resource_t * rsc, gboolean current) { GListPtr gIter = rsc->children; if (current) { if (rsc->role == RSC_ROLE_STARTED) { rsc->role = RSC_ROLE_SLAVE; } } else { GListPtr allocated = NULL; rsc->fns->location(rsc, &allocated, FALSE); if (allocated) { rsc->next_role = RSC_ROLE_SLAVE; } else { rsc->next_role = RSC_ROLE_STOPPED; } g_list_free(allocated); } for (; gIter != NULL; gIter = gIter->next) { resource_t *child_rsc = (resource_t *) gIter->data; set_role_slave(child_rsc, current); } } static void set_role_master(resource_t * rsc) { GListPtr gIter = rsc->children; if (rsc->next_role == RSC_ROLE_UNKNOWN) { rsc->next_role = RSC_ROLE_MASTER; } for (; gIter != NULL; gIter = gIter->next) { resource_t *child_rsc = (resource_t *) gIter->data; set_role_master(child_rsc); } } node_t * master_color(resource_t * rsc, node_t * prefer, pe_working_set_t * data_set) { int promoted = 0; GListPtr gIter = NULL; GListPtr gIter2 = NULL; GHashTableIter iter; node_t *node = NULL; node_t *chosen = NULL; node_t *cons_node = NULL; enum rsc_role_e next_role = RSC_ROLE_UNKNOWN; clone_variant_data_t *clone_data = NULL; get_clone_variant_data(clone_data, rsc); if (is_not_set(rsc->flags, pe_rsc_provisional)) { return NULL; } else if (is_set(rsc->flags, pe_rsc_allocating)) { crm_debug("Dependency loop detected involving %s", rsc->id); return NULL; } apply_master_prefs(rsc); clone_color(rsc, prefer, data_set); set_bit(rsc->flags, pe_rsc_allocating); /* count now tracks the number of masters allocated */ g_hash_table_iter_init(&iter, rsc->allowed_nodes); while (g_hash_table_iter_next(&iter, NULL, (void **)&node)) { node->count = 0; } /* * assign priority */ gIter = rsc->children; for (; gIter != NULL; gIter = gIter->next) { GListPtr list = NULL; resource_t *child_rsc = (resource_t *) gIter->data; crm_trace("Assigning priority for %s: %s", child_rsc->id, role2text(child_rsc->next_role)); if (child_rsc->fns->state(child_rsc, TRUE) == RSC_ROLE_STARTED) { set_role_slave(child_rsc, TRUE); } chosen = child_rsc->fns->location(child_rsc, &list, FALSE); if (g_list_length(list) > 1) { crm_config_err("Cannot promote non-colocated child %s", child_rsc->id); } g_list_free(list); if (chosen == NULL) { continue; } next_role = child_rsc->fns->state(child_rsc, FALSE); switch (next_role) { case RSC_ROLE_STARTED: case RSC_ROLE_UNKNOWN: CRM_CHECK(chosen != NULL, break); /* * Default to -1 if no value is set * * This allows master locations to be specified * based solely on rsc_location constraints, * but prevents anyone from being promoted if * neither a constraint nor a master-score is present */ child_rsc->priority = master_score(child_rsc, chosen, -1); break; case RSC_ROLE_SLAVE: case RSC_ROLE_STOPPED: child_rsc->priority = -INFINITY; break; case RSC_ROLE_MASTER: /* We will arrive here if we're re-creating actions after a stonith */ break; default: CRM_CHECK(FALSE /* unhandled */ , crm_err("Unknown resource role: %d for %s", next_role, child_rsc->id)); } apply_master_location(child_rsc->rsc_location); apply_master_location(rsc->rsc_location); gIter2 = child_rsc->rsc_cons; for (; gIter2 != NULL; gIter2 = gIter2->next) { rsc_colocation_t *cons = (rsc_colocation_t *) gIter2->data; child_rsc->cmds->rsc_colocation_lh(child_rsc, cons->rsc_rh, cons); } child_rsc->sort_index = child_rsc->priority; crm_trace("Assigning priority for %s: %d", child_rsc->id, child_rsc->priority); if (next_role == RSC_ROLE_MASTER) { child_rsc->sort_index = INFINITY; } } dump_node_scores(LOG_DEBUG_3, rsc, "Pre merge", rsc->allowed_nodes); master_promotion_order(rsc, data_set); /* mark the first N as masters */ gIter = rsc->children; for (; gIter != NULL; gIter = gIter->next) { resource_t *child_rsc = (resource_t *) gIter->data; char *score = score2char(child_rsc->sort_index); chosen = child_rsc->fns->location(child_rsc, NULL, FALSE); if (show_scores) { fprintf(stdout, "%s promotion score on %s: %s\n", child_rsc->id, chosen ? chosen->details->uname : "none", score); } else { do_crm_log(scores_log_level, "%s promotion score on %s: %s", child_rsc->id, chosen ? chosen->details->uname : "none", score); } crm_free(score); chosen = NULL; /* nuke 'chosen' so that we don't promote more than the * required number of instances */ if (child_rsc->sort_index < 0) { crm_trace("Not supposed to promote child: %s", child_rsc->id); } else if (promoted < clone_data->master_max || is_not_set(rsc->flags, pe_rsc_managed)) { chosen = can_be_master(child_rsc); } crm_debug("%s master score: %d", child_rsc->id, child_rsc->priority); if (chosen == NULL) { set_role_slave(child_rsc, FALSE); continue; } chosen->count++; crm_info("Promoting %s (%s %s)", child_rsc->id, role2text(child_rsc->role), chosen->details->uname); set_role_master(child_rsc); promoted++; } clone_data->masters_allocated = promoted; crm_info("%s: Promoted %d instances of a possible %d to master", rsc->id, promoted, clone_data->master_max); clear_bit(rsc->flags, pe_rsc_provisional); clear_bit(rsc->flags, pe_rsc_allocating); return NULL; } void master_create_actions(resource_t * rsc, pe_working_set_t * data_set) { action_t *action = NULL; GListPtr gIter = rsc->children; action_t *action_complete = NULL; gboolean any_promoting = FALSE; gboolean any_demoting = FALSE; resource_t *last_promote_rsc = NULL; resource_t *last_demote_rsc = NULL; clone_variant_data_t *clone_data = NULL; get_clone_variant_data(clone_data, rsc); crm_debug("Creating actions for %s", rsc->id); /* create actions as normal */ clone_create_actions(rsc, data_set); for (; gIter != NULL; gIter = gIter->next) { gboolean child_promoting = FALSE; gboolean child_demoting = FALSE; resource_t *child_rsc = (resource_t *) gIter->data; crm_trace("Creating actions for %s", child_rsc->id); child_rsc->cmds->create_actions(child_rsc, data_set); master_update_pseudo_status(child_rsc, &child_demoting, &child_promoting); any_demoting = any_demoting || child_demoting; any_promoting = any_promoting || child_promoting; crm_trace("Created actions for %s: %d %d", child_rsc->id, child_promoting, child_demoting); } /* promote */ action = promote_action(rsc, NULL, !any_promoting); action_complete = custom_action(rsc, promoted_key(rsc), RSC_PROMOTED, NULL, !any_promoting, TRUE, data_set); action_complete->priority = INFINITY; update_action_flags(action, pe_action_pseudo); update_action_flags(action, pe_action_runnable); update_action_flags(action_complete, pe_action_pseudo); update_action_flags(action_complete, pe_action_runnable); if (clone_data->masters_allocated > 0) { update_action_flags(action, pe_action_runnable); update_action_flags(action_complete, pe_action_runnable); } child_promoting_constraints(clone_data, pe_order_optional, rsc, NULL, last_promote_rsc, data_set); if (clone_data->promote_notify == NULL) { clone_data->promote_notify = create_notification_boundaries(rsc, RSC_PROMOTE, action, action_complete, data_set); } /* demote */ action = demote_action(rsc, NULL, !any_demoting); action_complete = custom_action(rsc, demoted_key(rsc), RSC_DEMOTED, NULL, !any_demoting, TRUE, data_set); action_complete->priority = INFINITY; update_action_flags(action, pe_action_pseudo); update_action_flags(action, pe_action_runnable); update_action_flags(action_complete, pe_action_pseudo); update_action_flags(action_complete, pe_action_runnable); child_demoting_constraints(clone_data, pe_order_optional, rsc, NULL, last_demote_rsc, data_set); if (clone_data->demote_notify == NULL) { clone_data->demote_notify = create_notification_boundaries(rsc, RSC_DEMOTE, action, action_complete, data_set); if (clone_data->promote_notify) { /* If we ever wanted groups to have notifications we'd need to move this to native_internal_constraints() one day * Requires exposing *_notify */ order_actions(clone_data->stop_notify->post_done, clone_data->promote_notify->pre, pe_order_optional); order_actions(clone_data->start_notify->post_done, clone_data->promote_notify->pre, pe_order_optional); order_actions(clone_data->demote_notify->post_done, clone_data->promote_notify->pre, pe_order_optional); order_actions(clone_data->demote_notify->post_done, clone_data->start_notify->pre, pe_order_optional); order_actions(clone_data->demote_notify->post_done, clone_data->stop_notify->pre, pe_order_optional); } } /* restore the correct priority */ gIter = rsc->children; for (; gIter != NULL; gIter = gIter->next) { resource_t *child_rsc = (resource_t *) gIter->data; child_rsc->priority = rsc->priority; } } void master_internal_constraints(resource_t * rsc, pe_working_set_t * data_set) { GListPtr gIter = rsc->children; resource_t *last_rsc = NULL; clone_variant_data_t *clone_data = NULL; get_clone_variant_data(clone_data, rsc); clone_internal_constraints(rsc, data_set); /* global stopped before start */ new_rsc_order(rsc, RSC_STOPPED, rsc, RSC_START, pe_order_optional, data_set); /* global stopped before promote */ new_rsc_order(rsc, RSC_STOPPED, rsc, RSC_PROMOTE, pe_order_optional, data_set); /* global demoted before start */ new_rsc_order(rsc, RSC_DEMOTED, rsc, RSC_START, pe_order_optional, data_set); /* global started before promote */ new_rsc_order(rsc, RSC_STARTED, rsc, RSC_PROMOTE, pe_order_optional, data_set); /* global demoted before stop */ new_rsc_order(rsc, RSC_DEMOTED, rsc, RSC_STOP, pe_order_optional, data_set); /* global demote before demoted */ new_rsc_order(rsc, RSC_DEMOTE, rsc, RSC_DEMOTED, pe_order_optional, data_set); /* global demoted before promote */ new_rsc_order(rsc, RSC_DEMOTED, rsc, RSC_PROMOTE, pe_order_optional, data_set); for (; gIter != NULL; gIter = gIter->next) { resource_t *child_rsc = (resource_t *) gIter->data; /* child demote before promote */ new_rsc_order(child_rsc, RSC_DEMOTE, child_rsc, RSC_PROMOTE, pe_order_optional, data_set); child_promoting_constraints(clone_data, pe_order_optional, rsc, child_rsc, last_rsc, data_set); child_demoting_constraints(clone_data, pe_order_optional, rsc, child_rsc, last_rsc, data_set); last_rsc = child_rsc; } } static void node_hash_update_one(GHashTable * hash, node_t * other, const char *attr, int score) { GHashTableIter iter; node_t *node = NULL; const char *value = NULL; if (other == NULL) { return; } else if (attr == NULL) { attr = "#" XML_ATTR_UNAME; } value = g_hash_table_lookup(other->details->attrs, attr); g_hash_table_iter_init(&iter, hash); while (g_hash_table_iter_next(&iter, NULL, (void **)&node)) { const char *tmp = g_hash_table_lookup(node->details->attrs, attr); if (safe_str_eq(value, tmp)) { crm_trace("%s: %d + %d", node->details->uname, node->weight, other->weight); node->weight = merge_weights(node->weight, score); } } } void master_rsc_colocation_rh(resource_t * rsc_lh, resource_t * rsc_rh, rsc_colocation_t * constraint) { GListPtr gIter = NULL; clone_variant_data_t *clone_data = NULL; get_clone_variant_data(clone_data, rsc_rh); CRM_CHECK(rsc_rh != NULL, return); if (is_set(rsc_rh->flags, pe_rsc_provisional)) { return; } else if (constraint->role_rh == RSC_ROLE_UNKNOWN) { crm_trace("Handling %s as a clone colocation", constraint->id); clone_rsc_colocation_rh(rsc_lh, rsc_rh, constraint); return; } CRM_CHECK(rsc_lh != NULL, return); CRM_CHECK(rsc_lh->variant == pe_native, return); crm_trace("Processing constraint %s: %d", constraint->id, constraint->score); if (constraint->role_rh == RSC_ROLE_UNKNOWN) { gIter = rsc_rh->children; for (; gIter != NULL; gIter = gIter->next) { resource_t *child_rsc = (resource_t *) gIter->data; child_rsc->cmds->rsc_colocation_rh(rsc_lh, child_rsc, constraint); } } else if (is_set(rsc_lh->flags, pe_rsc_provisional)) { GListPtr rhs = NULL; gIter = rsc_rh->children; for (; gIter != NULL; gIter = gIter->next) { resource_t *child_rsc = (resource_t *) gIter->data; node_t *chosen = child_rsc->fns->location(child_rsc, NULL, FALSE); enum rsc_role_e next_role = child_rsc->fns->state(child_rsc, FALSE); crm_trace("Processing: %s", child_rsc->id); if (chosen != NULL && next_role == constraint->role_rh) { crm_trace("Applying: %s %s %s %d", child_rsc->id, role2text(next_role), chosen->details->uname, constraint->score); if (constraint->score < INFINITY) { node_hash_update_one(rsc_lh->allowed_nodes, chosen, constraint->node_attribute, constraint->score); } rhs = g_list_prepend(rhs, chosen); } } /* Only do this if its not a master-master colocation * Doing this unconditionally would prevent the slaves from being started */ if (constraint->role_lh != RSC_ROLE_MASTER || constraint->role_rh != RSC_ROLE_MASTER) { if (constraint->score >= INFINITY) { node_list_exclude(rsc_lh->allowed_nodes, rhs, TRUE); } } g_list_free(rhs); } else if (constraint->role_lh == RSC_ROLE_MASTER) { resource_t *rh_child = find_compatible_child(rsc_lh, rsc_rh, constraint->role_rh, FALSE); if (rh_child == NULL && constraint->score >= INFINITY) { crm_trace("%s can't be promoted %s", rsc_lh->id, constraint->id); rsc_lh->priority = -INFINITY; } else if (rh_child != NULL) { int new_priority = merge_weights(rsc_lh->priority, constraint->score); crm_debug("Applying %s to %s", constraint->id, rsc_lh->id); crm_debug("\t%s: %d->%d", rsc_lh->id, rsc_lh->priority, new_priority); rsc_lh->priority = new_priority; } } return; } void master_append_meta(resource_t * rsc, xmlNode * xml) { char *name = NULL; clone_variant_data_t *clone_data = NULL; get_clone_variant_data(clone_data, rsc); clone_append_meta(rsc, xml); name = crm_meta_name(XML_RSC_ATTR_MASTER_MAX); crm_xml_add_int(xml, name, clone_data->master_max); crm_free(name); name = crm_meta_name(XML_RSC_ATTR_MASTER_NODEMAX); crm_xml_add_int(xml, name, clone_data->master_node_max); crm_free(name); } diff --git a/pengine/regression.sh b/pengine/regression.sh index 344044434e..a13c3218d7 100755 --- a/pengine/regression.sh +++ b/pengine/regression.sh @@ -1,633 +1,634 @@ #!/bin/bash # Copyright (C) 2004 Andrew Beekhof # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public # License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This software is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # core=`dirname $0` . $core/regression.core.sh create_mode="true" info Generating test outputs for these tests... # do_test file description info Done. echo "" info Performing the following tests from $io_dir create_mode="false" echo "" do_test simple1 "Offline " do_test simple2 "Start " do_test simple3 "Start 2 " do_test simple4 "Start Failed" do_test simple6 "Stop Start " do_test simple7 "Shutdown " #do_test simple8 "Stonith " #do_test simple9 "Lower version" #do_test simple10 "Higher version" do_test simple11 "Priority (ne)" do_test simple12 "Priority (eq)" do_test simple8 "Stickiness" echo "" do_test group1 "Group " do_test group2 "Group + Native " do_test group3 "Group + Group " do_test group4 "Group + Native (nothing)" do_test group5 "Group + Native (move) " do_test group6 "Group + Group (move) " do_test group7 "Group colocation" do_test group13 "Group colocation (cant run)" do_test group8 "Group anti-colocation" do_test group9 "Group recovery" do_test group10 "Group partial recovery" do_test group11 "Group target_role" do_test group14 "Group stop (graph terminated)" do_test group15 "-ve group colocation" do_test bug-1573 "Partial stop of a group with two children" do_test bug-1718 "Mandatory group ordering - Stop group_FUN" do_test bug-lf-2613 "Move group on failure" do_test bug-lf-2619 "Move group on clone failure" echo "" do_test rsc_dep1 "Must not " do_test rsc_dep3 "Must " do_test rsc_dep5 "Must not 3 " do_test rsc_dep7 "Must 3 " do_test rsc_dep10 "Must (but cant)" do_test rsc_dep2 "Must (running) " do_test rsc_dep8 "Must (running : alt) " do_test rsc_dep4 "Must (running + move)" do_test asymmetric "Asymmetric - require explicit location constraints" echo "" do_test orphan-0 "Orphan ignore" do_test orphan-1 "Orphan stop" do_test orphan-2 "Orphan stop, remove failcount" echo "" do_test params-0 "Params: No change" do_test params-1 "Params: Changed" do_test params-2 "Params: Resource definition" do_test params-4 "Params: Reload" do_test params-5 "Params: Restart based on probe digest" do_test novell-251689 "Resource definition change + target_role=stopped" do_test bug-lf-2106 "Restart all anonymous clone instances after config change" do_test params-6 "Params: Detect reload in previously migrated resource" echo "" do_test target-0 "Target Role : baseline" do_test target-1 "Target Role : master" do_test target-2 "Target Role : invalid" echo "" do_test domain "Failover domains" do_test base-score "Set a node's default score for all nodes" echo "" do_test date-1 "Dates" -t "2005-020" do_test date-2 "Date Spec - Pass" -t "2005-020T12:30" do_test date-3 "Date Spec - Fail" -t "2005-020T11:30" do_test probe-0 "Probe (anon clone)" do_test probe-1 "Pending Probe" do_test probe-2 "Correctly re-probe cloned groups" do_test probe-3 "Probe (pending node)" do_test probe-4 "Probe (pending node + stopped resource)" --rc 4 do_test standby "Standby" do_test comments "Comments" echo "" do_test one-or-more-0 "Everything starts" do_test one-or-more-1 "Nothing starts because of A" do_test one-or-more-2 "D can start because of C" do_test one-or-more-3 "D cannot start because of B and C" do_test one-or-more-4 "D cannot start because of target-role" do_test one-or-more-5 "Start A and F even though C and D are stopped" do_test one-or-more-6 "Leave A running even though B is stopped" do_test one-or-more-7 "Leave A running even though C is stopped" echo "" do_test order1 "Order start 1 " do_test order2 "Order start 2 " do_test order3 "Order stop " do_test order4 "Order (multiple) " do_test order5 "Order (move) " do_test order6 "Order (move w/ restart) " do_test order7 "Order (manditory) " do_test order-optional "Order (score=0) " do_test order-required "Order (score=INFINITY) " do_test bug-lf-2171 "Prevent group start when clone is stopped" do_test order-clone "Clone ordering should be able to prevent startup of dependant clones" do_test order-sets "Ordering for resource sets" do_test order-serialize "Serialize resources without inhibiting migration" do_test order-serialize-set "Serialize a set of resources without inhibiting migration" do_test clone-order-primitive "Order clone start after a primitive" do_test order-optional-keyword "Order (optional keyword)" do_test order-mandatory "Order (mandatory keyword)" do_test bug-lf-2493 "Don't imply colocation requirements when applying ordering constraints with clones" do_test ordered-set-basic-startup "Constraint set with default order settings." # This test emits an error log and thus upsets the test suite; even # though it explicitly aims to test an error leg. FIXME # do_test order-wrong-kind "Order (error)" echo "" do_test coloc-loop "Colocation - loop" do_test coloc-many-one "Colocation - many-to-one" do_test coloc-list "Colocation - many-to-one with list" do_test coloc-group "Colocation - groups" do_test coloc-slave-anti "Anti-colocation with slave shouldn't prevent master colocation" do_test coloc-attr "Colocation based on node attributes" do_test coloc-negative-group "Negative colocation with a group" do_test coloc-intra-set "Intra-set colocation" do_test bug-lf-2435 "Colocation sets with a negative score" do_test coloc-clone-stays-active "Ensure clones don't get stopped/demoted because a dependant must stop" echo "" do_test rsc-sets-seq-true "Resource Sets - sequential=false" do_test rsc-sets-seq-false "Resource Sets - sequential=true" do_test rsc-sets-clone "Resource Sets - Clone" do_test rsc-sets-master "Resource Sets - Master" do_test rsc-sets-clone-1 "Resource Sets - Clone (lf#2404)" #echo "" #do_test agent1 "version: lt (empty)" #do_test agent2 "version: eq " #do_test agent3 "version: gt " echo "" do_test attrs1 "string: eq (and) " do_test attrs2 "string: lt / gt (and)" do_test attrs3 "string: ne (or) " do_test attrs4 "string: exists " do_test attrs5 "string: not_exists " do_test attrs6 "is_dc: true " do_test attrs7 "is_dc: false " do_test attrs8 "score_attribute " echo "" do_test mon-rsc-1 "Schedule Monitor - start" do_test mon-rsc-2 "Schedule Monitor - move " do_test mon-rsc-3 "Schedule Monitor - pending start " do_test mon-rsc-4 "Schedule Monitor - move/pending start" echo "" do_test rec-rsc-0 "Resource Recover - no start " do_test rec-rsc-1 "Resource Recover - start " do_test rec-rsc-2 "Resource Recover - monitor " do_test rec-rsc-3 "Resource Recover - stop - ignore" do_test rec-rsc-4 "Resource Recover - stop - block " do_test rec-rsc-5 "Resource Recover - stop - fence " do_test rec-rsc-6 "Resource Recover - multiple - restart" do_test rec-rsc-7 "Resource Recover - multiple - stop " do_test rec-rsc-8 "Resource Recover - multiple - block " do_test rec-rsc-9 "Resource Recover - group/group" echo "" do_test quorum-1 "No quorum - ignore" do_test quorum-2 "No quorum - freeze" do_test quorum-3 "No quorum - stop " do_test quorum-4 "No quorum - start anyway" do_test quorum-5 "No quorum - start anyway (group)" do_test quorum-6 "No quorum - start anyway (clone)" echo "" do_test rec-node-1 "Node Recover - Startup - no fence" do_test rec-node-2 "Node Recover - Startup - fence " do_test rec-node-3 "Node Recover - HA down - no fence" do_test rec-node-4 "Node Recover - HA down - fence " do_test rec-node-5 "Node Recover - CRM down - no fence" do_test rec-node-6 "Node Recover - CRM down - fence " do_test rec-node-7 "Node Recover - no quorum - ignore " do_test rec-node-8 "Node Recover - no quorum - freeze " do_test rec-node-9 "Node Recover - no quorum - stop " do_test rec-node-10 "Node Recover - no quorum - stop w/fence" do_test rec-node-11 "Node Recover - CRM down w/ group - fence " do_test rec-node-12 "Node Recover - nothing active - fence " do_test rec-node-13 "Node Recover - failed resource + shutdown - fence " do_test rec-node-15 "Node Recover - unknown lrm section" do_test rec-node-14 "Serialize all stonith's" echo "" do_test multi1 "Multiple Active (stop/start)" echo "" do_test migrate-begin "Normal migration" do_test migrate-success "Completed migration" do_test migrate-partial-1 "Completed migration, missing stop on source" do_test migrate-partial-2 "Successful migrate_to only" do_test migrate-partial-3 "Successful migrate_to only, target down" do_test migrate-partial-4 "Migrate from the correct host after migrate_to+migrate_from" do_test migrate-fail-2 "Failed migrate_from" do_test migrate-fail-3 "Failed migrate_from + stop on source" do_test migrate-fail-4 "Failed migrate_from + stop on target - ideally we wouldn't need to re-stop on target" do_test migrate-fail-5 "Failed migrate_from + stop on source and target" do_test migrate-fail-6 "Failed migrate_to" do_test migrate-fail-7 "Failed migrate_to + stop on source" do_test migrate-fail-8 "Failed migrate_to + stop on target - ideally we wouldn't need to re-stop on target" do_test migrate-fail-9 "Failed migrate_to + stop on source and target" do_test migrate-stop "Migration in a stopping stack" do_test migrate-start "Migration in a starting stack" do_test migrate-stop_start "Migration in a restarting stack" do_test migrate-stop-complex "Migration in a complex stopping stack" do_test migrate-start-complex "Migration in a complex starting stack" do_test migrate-stop-start-complex "Migration in a complex moving stack" do_test migrate-shutdown "Order the post-migration 'stop' before node shutdown" do_test migrate-1 "Migrate (migrate)" do_test migrate-2 "Migrate (stable)" do_test migrate-3 "Migrate (failed migrate_to)" do_test migrate-4 "Migrate (failed migrate_from)" do_test novell-252693 "Migration in a stopping stack" do_test novell-252693-2 "Migration in a starting stack" do_test novell-252693-3 "Non-Migration in a starting and stopping stack" do_test bug-1820 "Migration in a group" do_test bug-1820-1 "Non-migration in a group" do_test migrate-5 "Primitive migration with a clone" do_test migrate-fencing "Migration after Fencing" #echo "" #do_test complex1 "Complex " do_test bug-lf-2422 "Dependancy on partially active group - stop ocfs:*" echo "" do_test clone-anon-probe-1 "Probe the correct (anonymous) clone instance for each node" do_test clone-anon-probe-2 "Avoid needless re-probing of anonymous clones" do_test clone-anon-failcount "Merge failcounts for anonymous clones" do_test inc0 "Incarnation start" do_test inc1 "Incarnation start order" do_test inc2 "Incarnation silent restart, stop, move" do_test inc3 "Inter-incarnation ordering, silent restart, stop, move" do_test inc4 "Inter-incarnation ordering, silent restart, stop, move (ordered)" do_test inc5 "Inter-incarnation ordering, silent restart, stop, move (restart 1)" do_test inc6 "Inter-incarnation ordering, silent restart, stop, move (restart 2)" do_test inc7 "Clone colocation" do_test inc8 "Clone anti-colocation" do_test inc9 "Non-unique clone" do_test inc10 "Non-unique clone (stop)" do_test inc11 "Primitive colocation with clones" do_test inc12 "Clone shutdown" do_test cloned-group "Make sure only the correct number of cloned groups are started" do_test clone-no-shuffle "Dont prioritize allocation of instances that must be moved" do_test clone-max-zero "Orphan processing with clone-max=0" do_test clone-anon-dup "Bug LF#2087 - Correctly parse the state of anonymous clones that are active more than once per node" do_test bug-lf-2160 "Dont shuffle clones due to colocation" do_test bug-lf-2213 "clone-node-max enforcement for cloned groups" do_test bug-lf-2153 "Clone ordering constraints" do_test bug-lf-2361 "Ensure clones observe mandatory ordering constraints if the LHS is unrunnable" do_test bug-lf-2317 "Avoid needless restart of primitive depending on a clone" do_test clone-colocate-instance-1 "Colocation with a specific clone instance (negative example)" do_test clone-colocate-instance-2 "Colocation with a specific clone instance" do_test clone-order-instance "Ordering with specific clone instances" do_test bug-lf-2453 "Enforce mandatory clone ordering without colocation" do_test bug-lf-2508 "Correctly reconstruct the status of anonymous cloned groups" do_test bug-lf-2544 "Balanced clone placement" do_test bug-lf-2445 "Redistribute clones with node-max > 1 and stickiness = 0" do_test bug-lf-2574 "Avoid clone shuffle" do_test bug-lf-2581 "Avoid group restart due to unrelated clone (re)start" echo "" do_test master-0 "Stopped -> Slave" do_test master-1 "Stopped -> Promote" do_test master-2 "Stopped -> Promote : notify" do_test master-3 "Stopped -> Promote : master location" do_test master-4 "Started -> Promote : master location" do_test master-5 "Promoted -> Promoted" do_test master-6 "Promoted -> Promoted (2)" do_test master-7 "Promoted -> Fenced" do_test master-8 "Promoted -> Fenced -> Moved" do_test master-9 "Stopped + Promotable + No quorum" do_test master-10 "Stopped -> Promotable : notify with monitor" do_test master-11 "Stopped -> Promote : colocation" do_test novell-239082 "Demote/Promote ordering" do_test novell-239087 "Stable master placement" do_test master-12 "Promotion based solely on rsc_location constraints" do_test master-13 "Include preferences of colocated resources when placing master" do_test master-demote "Ordering when actions depends on demoting a slave resource" do_test master-ordering "Prevent resources from starting that need a master" do_test bug-1765 "Master-Master Colocation (dont stop the slaves)" do_test master-group "Promotion of cloned groups" do_test bug-lf-1852 "Don't shuffle master/slave instances unnecessarily" do_test master-failed-demote "Dont retry failed demote actions" do_test master-failed-demote-2 "Dont retry failed demote actions (notify=false)" do_test master-depend "Ensure resources that depend on the master don't get allocated until the master does" do_test master-reattach "Re-attach to a running master" do_test master-allow-start "Don't include master score if it would prevent allocation" do_test master-colocation "Allow master instances placemaker to be influenced by colocation constraints" do_test master-pseudo "Make sure promote/demote pseudo actions are created correctly" do_test master-role "Prevent target-role from promoting more than master-max instances" do_test bug-lf-2358 "Master-Master anti-colocation" do_test master-promotion-constraint "Mandatory master colocation constraints" do_test unmanaged-master "Ensure role is preserved for unmanaged resources" do_test master-unmanaged-monitor "Start the correct monitor operation for unmanaged masters" do_test master-demote-2 "Demote does not clear past failure" do_test master-move "Move master based on failure of colocated group" +do_test master-probed-score "Observe the promotion score of probed resources" echo "" do_test history-1 "Correctly parse stateful-1 resource state" echo "" do_test managed-0 "Managed (reference)" do_test managed-1 "Not managed - down " do_test managed-2 "Not managed - up " do_test bug-5028 "Shutdown should block if anything depends on an unmanaged resource" do_test bug-5028-detach "Ensure detach still works" do_test bug-5028-bottom "Ensure shutdown still blocks if the blocked resource is at the bottom of the stack" echo "" do_test interleave-0 "Interleave (reference)" do_test interleave-1 "coloc - not interleaved" do_test interleave-2 "coloc - interleaved " do_test interleave-3 "coloc - interleaved (2)" do_test interleave-pseudo-stop "Interleaved clone during stonith" do_test interleave-stop "Interleaved clone during stop" do_test interleave-restart "Interleaved clone during dependancy restart" echo "" do_test notify-0 "Notify reference" do_test notify-1 "Notify simple" do_test notify-2 "Notify simple, confirm" do_test notify-3 "Notify move, confirm" do_test novell-239079 "Notification priority" #do_test notify-2 "Notify - 764" echo "" do_test 594 "OSDL #594 - Unrunnable actions scheduled in transition" do_test 662 "OSDL #662 - Two resources start on one node when incarnation_node_max = 1" do_test 696 "OSDL #696 - CRM starts stonith RA without monitor" do_test 726 "OSDL #726 - Attempting to schedule rsc_posic041_monitor_5000 _after_ a stop" do_test 735 "OSDL #735 - Correctly detect that rsc_hadev1 is stopped on hadev3" do_test 764 "OSDL #764 - Missing monitor op for DoFencing:child_DoFencing:1" do_test 797 "OSDL #797 - Assert triggered: task_id_i > max_call_id" do_test 829 "OSDL #829" do_test 994 "OSDL #994 - Stopping the last resource in a resource group causes the entire group to be restarted" do_test 994-2 "OSDL #994 - with a dependant resource" do_test 1360 "OSDL #1360 - Clone stickiness" do_test 1484 "OSDL #1484 - on_fail=stop" do_test 1494 "OSDL #1494 - Clone stability" do_test unrunnable-1 "Unrunnable" do_test stonith-0 "Stonith loop - 1" do_test stonith-1 "Stonith loop - 2" do_test stonith-2 "Stonith loop - 3" do_test stonith-3 "Stonith startup" do_test bug-1572-1 "Recovery of groups depending on master/slave" do_test bug-1572-2 "Recovery of groups depending on master/slave when the master is never re-promoted" do_test bug-1685 "Depends-on-master ordering" do_test bug-1822 "Dont promote partially active groups" do_test bug-pm-11 "New resource added to a m/s group" do_test bug-pm-12 "Recover only the failed portion of a cloned group" do_test bug-n-387749 "Don't shuffle clone instances" do_test bug-n-385265 "Don't ignore the failure stickiness of group children - resource_idvscommon should stay stopped" do_test bug-n-385265-2 "Ensure groups are migrated instead of remaining partially active on the current node" do_test bug-lf-1920 "Correctly handle probes that find active resources" do_test bnc-515172 "Location constraint with multiple expressions" do_test colocate-primitive-with-clone "Optional colocation with a clone" do_test use-after-free-merge "Use-after-free in native_merge_weights" do_test bug-lf-2551 "STONITH ordering for stop" do_test bug-lf-2606 "Stonith implies demote" do_test bug-lf-2474 "Ensure resource op timeout takes precedence over op_defaults" do_test bug-suse-707150 "Prevent vm-01 from starting due to colocation/ordering" do_test bug-5014-A-start-B-start "Verify when A starts B starts using symmetrical=false" do_test bug-5014-A-stop-B-started "Verify when A stops B does not stop if it has already started using symmetric=false" do_test bug-5014-A-stopped-B-stopped "Verify when A is stopped and B has not started, B does not start before A using symmetric=false" do_test bug-5014-CthenAthenB-C-stopped "Verify when C then A is symmetrical=true, A then B is symmetric=false, and C is stopped that nothing starts." do_test bug-5014-CLONE-A-start-B-start "Verify when A starts B starts using clone resources with symmetric=false" do_test bug-5014-CLONE-A-stop-B-started "Verify when A stops B does not stop if it has already started using clone resources with symmetric=false." do_test bug-5014-GROUP-A-start-B-start "Verify when A starts B starts when using group resources with symmetric=false." do_test bug-5014-GROUP-A-stopped-B-started "Verify when A stops B does not stop if it has already started using group resources with symmetric=false." do_test bug-5014-GROUP-A-stopped-B-stopped "Verify when A is stopped and B has not started, B does not start before A using group resources with symmetric=false." do_test bug-5014-ordered-set-symmetrical-false "Verify ordered sets work with symmetrical=false" do_test bug-5014-ordered-set-symmetrical-true "Verify ordered sets work with symmetrical=true" do_test bug-5007-masterslave_colocation "Verify use of colocation scores other than INFINITY and -INFINITY work on multi-state resources." do_test bug-5038 "Prevent restart of anonymous clones when clone-max decreases" do_test bug-5025-1 "Automatically clean up failcount after resource config change with reload" do_test bug-5025-2 "Make sure clear failcount action isn't set when config does not change." do_test bug-5025-3 "Automatically clean up failcount after resource config change with restart" echo "" do_test systemhealth1 "System Health () #1" do_test systemhealth2 "System Health () #2" do_test systemhealth3 "System Health () #3" do_test systemhealthn1 "System Health (None) #1" do_test systemhealthn2 "System Health (None) #2" do_test systemhealthn3 "System Health (None) #3" do_test systemhealthm1 "System Health (Migrate On Red) #1" do_test systemhealthm2 "System Health (Migrate On Red) #2" do_test systemhealthm3 "System Health (Migrate On Red) #3" do_test systemhealtho1 "System Health (Only Green) #1" do_test systemhealtho2 "System Health (Only Green) #2" do_test systemhealtho3 "System Health (Only Green) #3" do_test systemhealthp1 "System Health (Progessive) #1" do_test systemhealthp2 "System Health (Progessive) #2" do_test systemhealthp3 "System Health (Progessive) #3" echo "" do_test utilization "Placement Strategy - utilization" do_test minimal "Placement Strategy - minimal" do_test balanced "Placement Strategy - balanced" echo "" do_test placement-stickiness "Optimized Placement Strategy - stickiness" do_test placement-priority "Optimized Placement Strategy - priority" do_test placement-location "Optimized Placement Strategy - location" do_test placement-capacity "Optimized Placement Strategy - capacity" echo "" do_test utilization-order1 "Utilization Order - Simple" do_test utilization-order2 "Utilization Order - Complex" do_test utilization-order3 "Utilization Order - Migrate" do_test utilization-order4 "Utilization Order - Live Mirgration (bnc#695440)" do_test utilization-shuffle "Don't displace prmExPostgreSQLDB2 on act2, Start prmExPostgreSQLDB1 on act3" echo "" do_test reprobe-target_rc "Ensure correct target_rc for reprobe of inactive resources" echo "" do_test stopped-monitor-00 "Stopped Monitor - initial start" do_test stopped-monitor-01 "Stopped Monitor - failed started" do_test stopped-monitor-02 "Stopped Monitor - started multi-up" do_test stopped-monitor-03 "Stopped Monitor - stop started" do_test stopped-monitor-04 "Stopped Monitor - failed stop" do_test stopped-monitor-05 "Stopped Monitor - start unmanaged" do_test stopped-monitor-06 "Stopped Monitor - unmanaged multi-up" do_test stopped-monitor-07 "Stopped Monitor - start unmanaged multi-up" do_test stopped-monitor-08 "Stopped Monitor - migrate" do_test stopped-monitor-09 "Stopped Monitor - unmanage started" do_test stopped-monitor-10 "Stopped Monitor - unmanaged started multi-up" do_test stopped-monitor-11 "Stopped Monitor - stop unmanaged started" do_test stopped-monitor-12 "Stopped Monitor - unmanaged started multi-up (targer-role="Stopped")" do_test stopped-monitor-20 "Stopped Monitor - initial stop" do_test stopped-monitor-21 "Stopped Monitor - stopped single-up" do_test stopped-monitor-22 "Stopped Monitor - stopped multi-up" do_test stopped-monitor-23 "Stopped Monitor - start stopped" do_test stopped-monitor-24 "Stopped Monitor - unmanage stopped" do_test stopped-monitor-25 "Stopped Monitor - unmanaged stopped multi-up" do_test stopped-monitor-26 "Stopped Monitor - start unmanaged stopped" do_test stopped-monitor-27 "Stopped Monitor - unmanaged stopped multi-up (target-role="Started")" do_test stopped-monitor-30 "Stopped Monitor - new node started" do_test stopped-monitor-31 "Stopped Monitor - new node stopped" echo"" do_test ticket-primitive-1 "Ticket - Primitive (loss-policy=stop, initial)" do_test ticket-primitive-2 "Ticket - Primitive (loss-policy=stop, granted)" do_test ticket-primitive-3 "Ticket - Primitive (loss-policy-stop, revoked)" do_test ticket-primitive-4 "Ticket - Primitive (loss-policy=demote, initial)" do_test ticket-primitive-5 "Ticket - Primitive (loss-policy=demote, granted)" do_test ticket-primitive-6 "Ticket - Primitive (loss-policy=demote, revoked)" do_test ticket-primitive-7 "Ticket - Primitive (loss-policy=fence, initial)" do_test ticket-primitive-8 "Ticket - Primitive (loss-policy=fence, granted)" do_test ticket-primitive-9 "Ticket - Primitive (loss-policy=fence, revoked)" do_test ticket-primitive-10 "Ticket - Primitive (loss-policy=freeze, initial)" do_test ticket-primitive-11 "Ticket - Primitive (loss-policy=freeze, granted)" do_test ticket-primitive-12 "Ticket - Primitive (loss-policy=freeze, revoked)" do_test ticket-primitive-13 "Ticket - Primitive (loss-policy=stop, standby, granted)" do_test ticket-primitive-14 "Ticket - Primitive (loss-policy=stop, granted, standby)" do_test ticket-primitive-15 "Ticket - Primitive (loss-policy=stop, standby, revoked)" do_test ticket-primitive-16 "Ticket - Primitive (loss-policy=demote, standby, granted)" do_test ticket-primitive-17 "Ticket - Primitive (loss-policy=demote, granted, standby)" do_test ticket-primitive-18 "Ticket - Primitive (loss-policy=demote, standby, revoked)" do_test ticket-primitive-19 "Ticket - Primitive (loss-policy=fence, standby, granted)" do_test ticket-primitive-20 "Ticket - Primitive (loss-policy=fence, granted, standby)" do_test ticket-primitive-21 "Ticket - Primitive (loss-policy=fence, standby, revoked)" do_test ticket-primitive-22 "Ticket - Primitive (loss-policy=freeze, standby, granted)" do_test ticket-primitive-23 "Ticket - Primitive (loss-policy=freeze, granted, standby)" do_test ticket-primitive-24 "Ticket - Primitive (loss-policy=freeze, standby, revoked)" echo"" do_test ticket-group-1 "Ticket - Group (loss-policy=stop, initial)" do_test ticket-group-2 "Ticket - Group (loss-policy=stop, granted)" do_test ticket-group-3 "Ticket - Group (loss-policy-stop, revoked)" do_test ticket-group-4 "Ticket - Group (loss-policy=demote, initial)" do_test ticket-group-5 "Ticket - Group (loss-policy=demote, granted)" do_test ticket-group-6 "Ticket - Group (loss-policy=demote, revoked)" do_test ticket-group-7 "Ticket - Group (loss-policy=fence, initial)" do_test ticket-group-8 "Ticket - Group (loss-policy=fence, granted)" do_test ticket-group-9 "Ticket - Group (loss-policy=fence, revoked)" do_test ticket-group-10 "Ticket - Group (loss-policy=freeze, initial)" do_test ticket-group-11 "Ticket - Group (loss-policy=freeze, granted)" do_test ticket-group-12 "Ticket - Group (loss-policy=freeze, revoked)" do_test ticket-group-13 "Ticket - Group (loss-policy=stop, standby, granted)" do_test ticket-group-14 "Ticket - Group (loss-policy=stop, granted, standby)" do_test ticket-group-15 "Ticket - Group (loss-policy=stop, standby, revoked)" do_test ticket-group-16 "Ticket - Group (loss-policy=demote, standby, granted)" do_test ticket-group-17 "Ticket - Group (loss-policy=demote, granted, standby)" do_test ticket-group-18 "Ticket - Group (loss-policy=demote, standby, revoked)" do_test ticket-group-19 "Ticket - Group (loss-policy=fence, standby, granted)" do_test ticket-group-20 "Ticket - Group (loss-policy=fence, granted, standby)" do_test ticket-group-21 "Ticket - Group (loss-policy=fence, standby, revoked)" do_test ticket-group-22 "Ticket - Group (loss-policy=freeze, standby, granted)" do_test ticket-group-23 "Ticket - Group (loss-policy=freeze, granted, standby)" do_test ticket-group-24 "Ticket - Group (loss-policy=freeze, standby, revoked)" echo"" do_test ticket-clone-1 "Ticket - Clone (loss-policy=stop, initial)" do_test ticket-clone-2 "Ticket - Clone (loss-policy=stop, granted)" do_test ticket-clone-3 "Ticket - Clone (loss-policy-stop, revoked)" do_test ticket-clone-4 "Ticket - Clone (loss-policy=demote, initial)" do_test ticket-clone-5 "Ticket - Clone (loss-policy=demote, granted)" do_test ticket-clone-6 "Ticket - Clone (loss-policy=demote, revoked)" do_test ticket-clone-7 "Ticket - Clone (loss-policy=fence, initial)" do_test ticket-clone-8 "Ticket - Clone (loss-policy=fence, granted)" do_test ticket-clone-9 "Ticket - Clone (loss-policy=fence, revoked)" do_test ticket-clone-10 "Ticket - Clone (loss-policy=freeze, initial)" do_test ticket-clone-11 "Ticket - Clone (loss-policy=freeze, granted)" do_test ticket-clone-12 "Ticket - Clone (loss-policy=freeze, revoked)" do_test ticket-clone-13 "Ticket - Clone (loss-policy=stop, standby, granted)" do_test ticket-clone-14 "Ticket - Clone (loss-policy=stop, granted, standby)" do_test ticket-clone-15 "Ticket - Clone (loss-policy=stop, standby, revoked)" do_test ticket-clone-16 "Ticket - Clone (loss-policy=demote, standby, granted)" do_test ticket-clone-17 "Ticket - Clone (loss-policy=demote, granted, standby)" do_test ticket-clone-18 "Ticket - Clone (loss-policy=demote, standby, revoked)" do_test ticket-clone-19 "Ticket - Clone (loss-policy=fence, standby, granted)" do_test ticket-clone-20 "Ticket - Clone (loss-policy=fence, granted, standby)" do_test ticket-clone-21 "Ticket - Clone (loss-policy=fence, standby, revoked)" do_test ticket-clone-22 "Ticket - Clone (loss-policy=freeze, standby, granted)" do_test ticket-clone-23 "Ticket - Clone (loss-policy=freeze, granted, standby)" do_test ticket-clone-24 "Ticket - Clone (loss-policy=freeze, standby, revoked)" echo"" do_test ticket-master-1 "Ticket - Master (loss-policy=stop, initial)" do_test ticket-master-2 "Ticket - Master (loss-policy=stop, granted)" do_test ticket-master-3 "Ticket - Master (loss-policy-stop, revoked)" do_test ticket-master-4 "Ticket - Master (loss-policy=demote, initial)" do_test ticket-master-5 "Ticket - Master (loss-policy=demote, granted)" do_test ticket-master-6 "Ticket - Master (loss-policy=demote, revoked)" do_test ticket-master-7 "Ticket - Master (loss-policy=fence, initial)" do_test ticket-master-8 "Ticket - Master (loss-policy=fence, granted)" do_test ticket-master-9 "Ticket - Master (loss-policy=fence, revoked)" do_test ticket-master-10 "Ticket - Master (loss-policy=freeze, initial)" do_test ticket-master-11 "Ticket - Master (loss-policy=freeze, granted)" do_test ticket-master-12 "Ticket - Master (loss-policy=freeze, revoked)" do_test ticket-master-13 "Ticket - Master (loss-policy=stop, standby, granted)" do_test ticket-master-14 "Ticket - Master (loss-policy=stop, granted, standby)" do_test ticket-master-15 "Ticket - Master (loss-policy=stop, standby, revoked)" do_test ticket-master-16 "Ticket - Master (loss-policy=demote, standby, granted)" do_test ticket-master-17 "Ticket - Master (loss-policy=demote, granted, standby)" do_test ticket-master-18 "Ticket - Master (loss-policy=demote, standby, revoked)" do_test ticket-master-19 "Ticket - Master (loss-policy=fence, standby, granted)" do_test ticket-master-20 "Ticket - Master (loss-policy=fence, granted, standby)" do_test ticket-master-21 "Ticket - Master (loss-policy=fence, standby, revoked)" do_test ticket-master-22 "Ticket - Master (loss-policy=freeze, standby, granted)" do_test ticket-master-23 "Ticket - Master (loss-policy=freeze, granted, standby)" do_test ticket-master-24 "Ticket - Master (loss-policy=freeze, standby, revoked)" echo "" do_test ticket-rsc-sets-1 "Ticket - Resource sets (1 ticket, initial)" do_test ticket-rsc-sets-2 "Ticket - Resource sets (1 ticket, granted)" do_test ticket-rsc-sets-3 "Ticket - Resource sets (1 ticket, revoked)" do_test ticket-rsc-sets-4 "Ticket - Resource sets (2 tickets, initial)" do_test ticket-rsc-sets-5 "Ticket - Resource sets (2 tickets, granted)" do_test ticket-rsc-sets-6 "Ticket - Resource sets (2 tickets, granted)" do_test ticket-rsc-sets-7 "Ticket - Resource sets (2 tickets, revoked)" do_test ticket-rsc-sets-8 "Ticket - Resource sets (1 ticket, standby, granted)" do_test ticket-rsc-sets-9 "Ticket - Resource sets (1 ticket, granted, standby)" do_test ticket-rsc-sets-10 "Ticket - Resource sets (1 ticket, standby, revoked)" do_test ticket-rsc-sets-11 "Ticket - Resource sets (2 tickets, standby, granted)" do_test ticket-rsc-sets-12 "Ticket - Resource sets (2 tickets, standby, granted)" do_test ticket-rsc-sets-13 "Ticket - Resource sets (2 tickets, granted, standby)" do_test ticket-rsc-sets-14 "Ticket - Resource sets (2 tickets, standby, revoked)" echo "" do_test template-1 "Template - 1" do_test template-2 "Template - 2" do_test template-3 "Template - 3 (merge operations)" do_test template-coloc-1 "Template - Colocation 1" do_test template-coloc-2 "Template - Colocation 2" do_test template-coloc-3 "Template - Colocation 3" do_test template-order-1 "Template - Order 1" do_test template-order-2 "Template - Order 2" do_test template-order-3 "Template - Order 3" do_test template-ticket "Template - Ticket" do_test template-rsc-sets-1 "Template - Resource Sets 1" do_test template-rsc-sets-2 "Template - Resource Sets 2" do_test template-rsc-sets-3 "Template - Resource Sets 3" do_test template-rsc-sets-4 "Template - Resource Sets 4" echo "" test_results diff --git a/pengine/test10/bug-1765.scores b/pengine/test10/bug-1765.scores index 58f497fb37..7b6b07da5e 100644 --- a/pengine/test10/bug-1765.scores +++ b/pengine/test10/bug-1765.scores @@ -1,27 +1,27 @@ Allocation scores: clone_color: drbd0:0 allocation score on sles236: 76 -clone_color: drbd0:0 allocation score on sles238: 0 +clone_color: drbd0:0 allocation score on sles238: 75 clone_color: drbd0:1 allocation score on sles236: 0 -clone_color: drbd0:1 allocation score on sles238: 0 +clone_color: drbd0:1 allocation score on sles238: 5 clone_color: drbd1:0 allocation score on sles236: 76 clone_color: drbd1:0 allocation score on sles238: 0 clone_color: drbd1:1 allocation score on sles236: 0 clone_color: drbd1:1 allocation score on sles238: 76 clone_color: ms-drbd0 allocation score on sles236: 0 clone_color: ms-drbd0 allocation score on sles238: 0 clone_color: ms-drbd1 allocation score on sles236: 0 clone_color: ms-drbd1 allocation score on sles238: 0 drbd0:0 promotion score on sles236: INFINITY drbd0:1 promotion score on sles238: -INFINITY drbd0:2 promotion score on none: 0 drbd1:0 promotion score on sles236: 75 drbd1:1 promotion score on sles238: 75 drbd1:2 promotion score on none: 0 native_color: drbd0:0 allocation score on sles236: 76 -native_color: drbd0:0 allocation score on sles238: 0 +native_color: drbd0:0 allocation score on sles238: 75 native_color: drbd0:1 allocation score on sles236: -INFINITY -native_color: drbd0:1 allocation score on sles238: 0 +native_color: drbd0:1 allocation score on sles238: 5 native_color: drbd1:0 allocation score on sles236: 76 native_color: drbd1:0 allocation score on sles238: -INFINITY native_color: drbd1:1 allocation score on sles236: 0 native_color: drbd1:1 allocation score on sles238: 76 diff --git a/pengine/test10/bug-lf-1852.scores b/pengine/test10/bug-lf-1852.scores index f6bbc65725..2246d79f07 100644 --- a/pengine/test10/bug-lf-1852.scores +++ b/pengine/test10/bug-lf-1852.scores @@ -1,28 +1,28 @@ Allocation scores: clone_color: drbd0:0 allocation score on mysql-01: 0 clone_color: drbd0:0 allocation score on mysql-02: 11 -clone_color: drbd0:1 allocation score on mysql-01: 0 +clone_color: drbd0:1 allocation score on mysql-01: 75 clone_color: drbd0:1 allocation score on mysql-02: 0 clone_color: ms-drbd0 allocation score on mysql-01: 0 clone_color: ms-drbd0 allocation score on mysql-02: INFINITY drbd0:0 promotion score on mysql-02: INFINITY -drbd0:1 promotion score on mysql-01: -1 +drbd0:1 promotion score on mysql-01: 75 drbd0:2 promotion score on none: 0 group_color: fs0 allocation score on mysql-01: 0 group_color: fs0 allocation score on mysql-02: INFINITY group_color: fs_mysql_ip allocation score on mysql-01: 0 group_color: fs_mysql_ip allocation score on mysql-02: 0 group_color: ip_resource allocation score on mysql-01: 0 group_color: ip_resource allocation score on mysql-02: INFINITY group_color: mysqlid allocation score on mysql-01: 0 group_color: mysqlid allocation score on mysql-02: INFINITY native_color: drbd0:0 allocation score on mysql-01: 0 native_color: drbd0:0 allocation score on mysql-02: 11 -native_color: drbd0:1 allocation score on mysql-01: 0 +native_color: drbd0:1 allocation score on mysql-01: 75 native_color: drbd0:1 allocation score on mysql-02: -INFINITY native_color: fs0 allocation score on mysql-01: -INFINITY native_color: fs0 allocation score on mysql-02: INFINITY native_color: ip_resource allocation score on mysql-01: -INFINITY native_color: ip_resource allocation score on mysql-02: INFINITY native_color: mysqlid allocation score on mysql-01: -INFINITY native_color: mysqlid allocation score on mysql-02: INFINITY diff --git a/pengine/test10/master-9.dot b/pengine/test10/master-9.dot index 286d86bf9f..d86840544e 100644 --- a/pengine/test10/master-9.dot +++ b/pengine/test10/master-9.dot @@ -1,61 +1,61 @@ digraph "g" { "DcIPaddr_monitor_5000 va1" [ style=dashed color="red" fontcolor="black" ] "DoFencing_stop_0" -> "DoFencing_stopped_0" [ style = bold] "DoFencing_stop_0" -> "child_DoFencing:1_stop_0 ibm1" [ style = bold] "DoFencing_stop_0" [ style=bold color="green" fontcolor="orange" ] "DoFencing_stopped_0" [ style=bold color="green" fontcolor="orange" ] "child_DoFencing:1_monitor_0 va1" -> "probe_complete va1" [ style = bold] "child_DoFencing:1_monitor_0 va1" [ style=bold color="green" fontcolor="black" ] "child_DoFencing:1_stop_0 ibm1" -> "DoFencing_stopped_0" [ style = bold] "child_DoFencing:1_stop_0 ibm1" -> "do_shutdown ibm1" [ style = bold] "child_DoFencing:1_stop_0 ibm1" [ style=bold color="green" fontcolor="black" ] "child_DoFencing:2_monitor_0 ibm1" -> "probe_complete ibm1" [ style = bold] "child_DoFencing:2_monitor_0 ibm1" [ style=bold color="green" fontcolor="black" ] "child_DoFencing:2_monitor_0 va1" -> "probe_complete va1" [ style = bold] "child_DoFencing:2_monitor_0 va1" [ style=bold color="green" fontcolor="black" ] "child_DoFencing:3_monitor_0 ibm1" -> "probe_complete ibm1" [ style = bold] "child_DoFencing:3_monitor_0 ibm1" [ style=bold color="green" fontcolor="black" ] "child_DoFencing:3_monitor_0 va1" -> "probe_complete va1" [ style = bold] "child_DoFencing:3_monitor_0 va1" [ style=bold color="green" fontcolor="black" ] "do_shutdown ibm1" [ style=bold color="green" fontcolor="black" ] "heartbeat_127.0.0.12_monitor_5000 va1" [ style=dashed color="red" fontcolor="black" ] "lsb_dummy_monitor_5000 va1" [ style=dashed color="red" fontcolor="black" ] "ocf_127.0.0.11_monitor_5000 va1" [ style=dashed color="red" fontcolor="black" ] "ocf_127.0.0.13_monitor_5000 va1" [ style=dashed color="red" fontcolor="black" ] -"ocf_msdummy:0_monitor_5000 va1" [ style=dashed color="red" fontcolor="black" ] +"ocf_msdummy:0_monitor_6000 va1" [ style=dashed color="red" fontcolor="black"] "ocf_msdummy:1_monitor_5000 va1" [ style=dashed color="red" fontcolor="black" ] "ocf_msdummy:2_monitor_0 ibm1" -> "probe_complete ibm1" [ style = bold] "ocf_msdummy:2_monitor_0 ibm1" [ style=bold color="green" fontcolor="black" ] "ocf_msdummy:2_monitor_0 va1" -> "probe_complete va1" [ style = bold] "ocf_msdummy:2_monitor_0 va1" [ style=bold color="green" fontcolor="black" ] "ocf_msdummy:3_monitor_0 ibm1" -> "probe_complete ibm1" [ style = bold] "ocf_msdummy:3_monitor_0 ibm1" [ style=bold color="green" fontcolor="black" ] "ocf_msdummy:3_monitor_0 va1" -> "probe_complete va1" [ style = bold] "ocf_msdummy:3_monitor_0 va1" [ style=bold color="green" fontcolor="black" ] "ocf_msdummy:4_monitor_0 ibm1" -> "probe_complete ibm1" [ style = bold] "ocf_msdummy:4_monitor_0 ibm1" [ style=bold color="green" fontcolor="black" ] "ocf_msdummy:4_monitor_0 va1" -> "probe_complete va1" [ style = bold] "ocf_msdummy:4_monitor_0 va1" [ style=bold color="green" fontcolor="black" ] "ocf_msdummy:5_monitor_0 ibm1" -> "probe_complete ibm1" [ style = bold] "ocf_msdummy:5_monitor_0 ibm1" [ style=bold color="green" fontcolor="black" ] "ocf_msdummy:5_monitor_0 va1" -> "probe_complete va1" [ style = bold] "ocf_msdummy:5_monitor_0 va1" [ style=bold color="green" fontcolor="black" ] "ocf_msdummy:6_monitor_0 ibm1" -> "probe_complete ibm1" [ style = bold] "ocf_msdummy:6_monitor_0 ibm1" [ style=bold color="green" fontcolor="black" ] "ocf_msdummy:6_monitor_0 va1" -> "probe_complete va1" [ style = bold] "ocf_msdummy:6_monitor_0 va1" [ style=bold color="green" fontcolor="black" ] "ocf_msdummy:7_monitor_0 ibm1" -> "probe_complete ibm1" [ style = bold] "ocf_msdummy:7_monitor_0 ibm1" [ style=bold color="green" fontcolor="black" ] "ocf_msdummy:7_monitor_0 va1" -> "probe_complete va1" [ style = bold] "ocf_msdummy:7_monitor_0 va1" [ style=bold color="green" fontcolor="black" ] "probe_complete ibm1" -> "probe_complete" [ style = bold] "probe_complete ibm1" [ style=bold color="green" fontcolor="black" ] "probe_complete va1" -> "probe_complete" [ style = bold] "probe_complete va1" [ style=bold color="green" fontcolor="black" ] "probe_complete" -> "child_DoFencing:1_stop_0 ibm1" [ style = bold] "probe_complete" [ style=bold color="green" fontcolor="orange" ] "rsc_ibm1_monitor_5000 va1" [ style=dashed color="red" fontcolor="black" ] "rsc_sgi2_monitor_5000 va1" [ style=dashed color="red" fontcolor="black" ] "rsc_test02_monitor_5000 va1" [ style=dashed color="red" fontcolor="black" ] "rsc_va1_monitor_5000 va1" [ style=dashed color="red" fontcolor="black" ] } diff --git a/pengine/test10/master-9.scores b/pengine/test10/master-9.scores index cf8e8f71eb..da246988aa 100644 --- a/pengine/test10/master-9.scores +++ b/pengine/test10/master-9.scores @@ -1,165 +1,165 @@ Allocation scores: clone_color: DoFencing allocation score on ibm1: 0 clone_color: DoFencing allocation score on sgi2: 0 clone_color: DoFencing allocation score on test02: 0 clone_color: DoFencing allocation score on va1: 0 clone_color: child_DoFencing:0 allocation score on ibm1: 0 clone_color: child_DoFencing:0 allocation score on sgi2: 0 clone_color: child_DoFencing:0 allocation score on test02: 0 clone_color: child_DoFencing:0 allocation score on va1: 1 clone_color: child_DoFencing:1 allocation score on ibm1: 1 clone_color: child_DoFencing:1 allocation score on sgi2: 0 clone_color: child_DoFencing:1 allocation score on test02: 0 clone_color: child_DoFencing:1 allocation score on va1: 0 clone_color: child_DoFencing:2 allocation score on ibm1: 0 clone_color: child_DoFencing:2 allocation score on sgi2: 0 clone_color: child_DoFencing:2 allocation score on test02: 0 clone_color: child_DoFencing:2 allocation score on va1: 0 clone_color: child_DoFencing:3 allocation score on ibm1: 0 clone_color: child_DoFencing:3 allocation score on sgi2: 0 clone_color: child_DoFencing:3 allocation score on test02: 0 clone_color: child_DoFencing:3 allocation score on va1: 0 clone_color: master_rsc_1 allocation score on ibm1: 0 clone_color: master_rsc_1 allocation score on sgi2: 0 clone_color: master_rsc_1 allocation score on test02: 0 clone_color: master_rsc_1 allocation score on va1: 0 clone_color: ocf_msdummy:0 allocation score on ibm1: 0 clone_color: ocf_msdummy:0 allocation score on sgi2: 0 clone_color: ocf_msdummy:0 allocation score on test02: 0 -clone_color: ocf_msdummy:0 allocation score on va1: 0 +clone_color: ocf_msdummy:0 allocation score on va1: 1000 clone_color: ocf_msdummy:1 allocation score on ibm1: 0 clone_color: ocf_msdummy:1 allocation score on sgi2: 0 clone_color: ocf_msdummy:1 allocation score on test02: 0 clone_color: ocf_msdummy:1 allocation score on va1: 0 clone_color: ocf_msdummy:2 allocation score on ibm1: 0 clone_color: ocf_msdummy:2 allocation score on sgi2: 0 clone_color: ocf_msdummy:2 allocation score on test02: 0 clone_color: ocf_msdummy:2 allocation score on va1: 0 clone_color: ocf_msdummy:3 allocation score on ibm1: 0 clone_color: ocf_msdummy:3 allocation score on sgi2: 0 clone_color: ocf_msdummy:3 allocation score on test02: 0 clone_color: ocf_msdummy:3 allocation score on va1: 0 clone_color: ocf_msdummy:4 allocation score on ibm1: 0 clone_color: ocf_msdummy:4 allocation score on sgi2: 0 clone_color: ocf_msdummy:4 allocation score on test02: 0 clone_color: ocf_msdummy:4 allocation score on va1: 0 clone_color: ocf_msdummy:5 allocation score on ibm1: 0 clone_color: ocf_msdummy:5 allocation score on sgi2: 0 clone_color: ocf_msdummy:5 allocation score on test02: 0 clone_color: ocf_msdummy:5 allocation score on va1: 0 clone_color: ocf_msdummy:6 allocation score on ibm1: 0 clone_color: ocf_msdummy:6 allocation score on sgi2: 0 clone_color: ocf_msdummy:6 allocation score on test02: 0 clone_color: ocf_msdummy:6 allocation score on va1: 0 clone_color: ocf_msdummy:7 allocation score on ibm1: 0 clone_color: ocf_msdummy:7 allocation score on sgi2: 0 clone_color: ocf_msdummy:7 allocation score on test02: 0 clone_color: ocf_msdummy:7 allocation score on va1: 0 group_color: group-1 allocation score on ibm1: 0 group_color: group-1 allocation score on sgi2: 0 group_color: group-1 allocation score on test02: 0 group_color: group-1 allocation score on va1: 0 group_color: heartbeat_127.0.0.12 allocation score on ibm1: 0 group_color: heartbeat_127.0.0.12 allocation score on sgi2: 0 group_color: heartbeat_127.0.0.12 allocation score on test02: 0 group_color: heartbeat_127.0.0.12 allocation score on va1: 0 group_color: ocf_127.0.0.11 allocation score on ibm1: 0 group_color: ocf_127.0.0.11 allocation score on sgi2: 0 group_color: ocf_127.0.0.11 allocation score on test02: 0 group_color: ocf_127.0.0.11 allocation score on va1: 0 group_color: ocf_127.0.0.13 allocation score on ibm1: 0 group_color: ocf_127.0.0.13 allocation score on sgi2: 0 group_color: ocf_127.0.0.13 allocation score on test02: 0 group_color: ocf_127.0.0.13 allocation score on va1: 0 native_color: DcIPaddr allocation score on ibm1: -INFINITY native_color: DcIPaddr allocation score on sgi2: -INFINITY native_color: DcIPaddr allocation score on test02: -INFINITY native_color: DcIPaddr allocation score on va1: 0 native_color: child_DoFencing:0 allocation score on ibm1: -INFINITY native_color: child_DoFencing:0 allocation score on sgi2: -INFINITY native_color: child_DoFencing:0 allocation score on test02: -INFINITY native_color: child_DoFencing:0 allocation score on va1: 1 native_color: child_DoFencing:1 allocation score on ibm1: -INFINITY native_color: child_DoFencing:1 allocation score on sgi2: -INFINITY native_color: child_DoFencing:1 allocation score on test02: -INFINITY native_color: child_DoFencing:1 allocation score on va1: -INFINITY native_color: child_DoFencing:2 allocation score on ibm1: -INFINITY native_color: child_DoFencing:2 allocation score on sgi2: -INFINITY native_color: child_DoFencing:2 allocation score on test02: -INFINITY native_color: child_DoFencing:2 allocation score on va1: -INFINITY native_color: child_DoFencing:3 allocation score on ibm1: -INFINITY native_color: child_DoFencing:3 allocation score on sgi2: -INFINITY native_color: child_DoFencing:3 allocation score on test02: -INFINITY native_color: child_DoFencing:3 allocation score on va1: -INFINITY native_color: heartbeat_127.0.0.12 allocation score on ibm1: -INFINITY native_color: heartbeat_127.0.0.12 allocation score on sgi2: -INFINITY native_color: heartbeat_127.0.0.12 allocation score on test02: -INFINITY native_color: heartbeat_127.0.0.12 allocation score on va1: 0 native_color: lsb_dummy allocation score on ibm1: 0 native_color: lsb_dummy allocation score on sgi2: 0 native_color: lsb_dummy allocation score on test02: 0 native_color: lsb_dummy allocation score on va1: 0 native_color: ocf_127.0.0.11 allocation score on ibm1: -INFINITY native_color: ocf_127.0.0.11 allocation score on sgi2: -INFINITY native_color: ocf_127.0.0.11 allocation score on test02: -INFINITY native_color: ocf_127.0.0.11 allocation score on va1: 0 native_color: ocf_127.0.0.13 allocation score on ibm1: -INFINITY native_color: ocf_127.0.0.13 allocation score on sgi2: -INFINITY native_color: ocf_127.0.0.13 allocation score on test02: -INFINITY native_color: ocf_127.0.0.13 allocation score on va1: 0 native_color: ocf_msdummy:0 allocation score on ibm1: -INFINITY native_color: ocf_msdummy:0 allocation score on sgi2: -INFINITY native_color: ocf_msdummy:0 allocation score on test02: -INFINITY -native_color: ocf_msdummy:0 allocation score on va1: 0 +native_color: ocf_msdummy:0 allocation score on va1: 1000 native_color: ocf_msdummy:1 allocation score on ibm1: -INFINITY native_color: ocf_msdummy:1 allocation score on sgi2: -INFINITY native_color: ocf_msdummy:1 allocation score on test02: -INFINITY native_color: ocf_msdummy:1 allocation score on va1: 0 native_color: ocf_msdummy:2 allocation score on ibm1: -INFINITY native_color: ocf_msdummy:2 allocation score on sgi2: -INFINITY native_color: ocf_msdummy:2 allocation score on test02: -INFINITY native_color: ocf_msdummy:2 allocation score on va1: -INFINITY native_color: ocf_msdummy:3 allocation score on ibm1: -INFINITY native_color: ocf_msdummy:3 allocation score on sgi2: -INFINITY native_color: ocf_msdummy:3 allocation score on test02: -INFINITY native_color: ocf_msdummy:3 allocation score on va1: -INFINITY native_color: ocf_msdummy:4 allocation score on ibm1: -INFINITY native_color: ocf_msdummy:4 allocation score on sgi2: -INFINITY native_color: ocf_msdummy:4 allocation score on test02: -INFINITY native_color: ocf_msdummy:4 allocation score on va1: -INFINITY native_color: ocf_msdummy:5 allocation score on ibm1: -INFINITY native_color: ocf_msdummy:5 allocation score on sgi2: -INFINITY native_color: ocf_msdummy:5 allocation score on test02: -INFINITY native_color: ocf_msdummy:5 allocation score on va1: -INFINITY native_color: ocf_msdummy:6 allocation score on ibm1: -INFINITY native_color: ocf_msdummy:6 allocation score on sgi2: -INFINITY native_color: ocf_msdummy:6 allocation score on test02: -INFINITY native_color: ocf_msdummy:6 allocation score on va1: -INFINITY native_color: ocf_msdummy:7 allocation score on ibm1: -INFINITY native_color: ocf_msdummy:7 allocation score on sgi2: -INFINITY native_color: ocf_msdummy:7 allocation score on test02: -INFINITY native_color: ocf_msdummy:7 allocation score on va1: -INFINITY native_color: rsc_ibm1 allocation score on ibm1: 100 native_color: rsc_ibm1 allocation score on sgi2: 0 native_color: rsc_ibm1 allocation score on test02: 0 native_color: rsc_ibm1 allocation score on va1: 0 native_color: rsc_sgi2 allocation score on ibm1: 0 native_color: rsc_sgi2 allocation score on sgi2: 100 native_color: rsc_sgi2 allocation score on test02: 0 native_color: rsc_sgi2 allocation score on va1: 0 native_color: rsc_test02 allocation score on ibm1: 0 native_color: rsc_test02 allocation score on sgi2: 0 native_color: rsc_test02 allocation score on test02: 100 native_color: rsc_test02 allocation score on va1: 0 native_color: rsc_va1 allocation score on ibm1: 0 native_color: rsc_va1 allocation score on sgi2: 0 native_color: rsc_va1 allocation score on test02: 0 native_color: rsc_va1 allocation score on va1: 100 -ocf_msdummy:0 promotion score on va1: -1 +ocf_msdummy:0 promotion score on va1: 1000 ocf_msdummy:1 promotion score on va1: -1 ocf_msdummy:2 promotion score on none: 0 ocf_msdummy:3 promotion score on none: 0 ocf_msdummy:4 promotion score on none: 0 ocf_msdummy:5 promotion score on none: 0 ocf_msdummy:6 promotion score on none: 0 ocf_msdummy:7 promotion score on none: 0 diff --git a/pengine/test10/master-demote.scores b/pengine/test10/master-demote.scores index 78662613a1..77634a4c01 100644 --- a/pengine/test10/master-demote.scores +++ b/pengine/test10/master-demote.scores @@ -1,66 +1,66 @@ Allocation scores: clone_color: cyrus_drbd allocation score on cxa1: 210 clone_color: cyrus_drbd allocation score on cxb1: 200 clone_color: cyrus_drbd_node:0 allocation score on cxa1: 76 clone_color: cyrus_drbd_node:0 allocation score on cxb1: 0 clone_color: cyrus_drbd_node:1 allocation score on cxa1: 0 clone_color: cyrus_drbd_node:1 allocation score on cxb1: 76 clone_color: fence_clone allocation score on cxa1: 0 clone_color: fence_clone allocation score on cxb1: 0 clone_color: fence_node:0 allocation score on cxa1: 1 clone_color: fence_node:0 allocation score on cxb1: 0 clone_color: fence_node:1 allocation score on cxa1: 0 clone_color: fence_node:1 allocation score on cxb1: 1 clone_color: named_drbd allocation score on cxa1: 200 clone_color: named_drbd allocation score on cxb1: 210 -clone_color: named_drbd_node:0 allocation score on cxa1: 0 +clone_color: named_drbd_node:0 allocation score on cxa1: 75 clone_color: named_drbd_node:0 allocation score on cxb1: 76 clone_color: named_drbd_node:1 allocation score on cxa1: 76 clone_color: named_drbd_node:1 allocation score on cxb1: 0 clone_color: pingd_clone allocation score on cxa1: 0 clone_color: pingd_clone allocation score on cxb1: 0 clone_color: pingd_node:0 allocation score on cxa1: 1 clone_color: pingd_node:0 allocation score on cxb1: 0 clone_color: pingd_node:1 allocation score on cxa1: 0 clone_color: pingd_node:1 allocation score on cxb1: 1 cyrus_drbd_node:0 promotion score on cxa1: 285 cyrus_drbd_node:1 promotion score on cxb1: 275 named_drbd_node:0 promotion score on cxb1: 285 named_drbd_node:1 promotion score on cxa1: 275 named_drbd_node:2 promotion score on none: 0 native_color: cyrus_address allocation score on cxa1: 210 native_color: cyrus_address allocation score on cxb1: 200 native_color: cyrus_drbd_node:0 allocation score on cxa1: 76 native_color: cyrus_drbd_node:0 allocation score on cxb1: -INFINITY native_color: cyrus_drbd_node:1 allocation score on cxa1: 0 native_color: cyrus_drbd_node:1 allocation score on cxb1: 76 native_color: cyrus_filesys allocation score on cxa1: -INFINITY native_color: cyrus_filesys allocation score on cxb1: -INFINITY native_color: cyrus_master allocation score on cxa1: -INFINITY native_color: cyrus_master allocation score on cxb1: -INFINITY native_color: cyrus_syslogd allocation score on cxa1: -INFINITY native_color: cyrus_syslogd allocation score on cxb1: -INFINITY native_color: cyrus_volgroup allocation score on cxa1: -INFINITY native_color: cyrus_volgroup allocation score on cxb1: -INFINITY native_color: fence_node:0 allocation score on cxa1: 1 native_color: fence_node:0 allocation score on cxb1: -INFINITY native_color: fence_node:1 allocation score on cxa1: 0 native_color: fence_node:1 allocation score on cxb1: 1 native_color: named_address allocation score on cxa1: 200 native_color: named_address allocation score on cxb1: 210 native_color: named_daemon allocation score on cxa1: -INFINITY native_color: named_daemon allocation score on cxb1: -INFINITY -native_color: named_drbd_node:0 allocation score on cxa1: 0 +native_color: named_drbd_node:0 allocation score on cxa1: 75 native_color: named_drbd_node:0 allocation score on cxb1: 76 native_color: named_drbd_node:1 allocation score on cxa1: 76 native_color: named_drbd_node:1 allocation score on cxb1: -INFINITY native_color: named_filesys allocation score on cxa1: -INFINITY native_color: named_filesys allocation score on cxb1: -INFINITY native_color: named_syslogd allocation score on cxa1: -INFINITY native_color: named_syslogd allocation score on cxb1: -INFINITY native_color: named_volgroup allocation score on cxa1: -INFINITY native_color: named_volgroup allocation score on cxb1: -INFINITY native_color: pingd_node:0 allocation score on cxa1: 1 native_color: pingd_node:0 allocation score on cxb1: -INFINITY native_color: pingd_node:1 allocation score on cxa1: 0 native_color: pingd_node:1 allocation score on cxb1: 1 diff --git a/pengine/test10/master-probed-score.dot b/pengine/test10/master-probed-score.dot new file mode 100644 index 0000000000..8ba9ece791 --- /dev/null +++ b/pengine/test10/master-probed-score.dot @@ -0,0 +1,561 @@ +digraph "g" { +"AdminClone_confirmed-post_notify_promoted_0" -> "AdminDrbd:0_monitor_59000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_confirmed-post_notify_promoted_0" -> "AdminDrbd:1_monitor_59000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_confirmed-post_notify_promoted_0" -> "FilesystemClone_start_0" [ style = bold] +"AdminClone_confirmed-post_notify_promoted_0" [ style=bold color="green" fontcolor="orange"] +"AdminClone_confirmed-post_notify_running_0" -> "AdminClone_pre_notify_promote_0" [ style = bold] +"AdminClone_confirmed-post_notify_running_0" -> "AdminDrbd:0_monitor_59000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_confirmed-post_notify_running_0" -> "AdminDrbd:1_monitor_59000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_confirmed-post_notify_running_0" [ style=bold color="green" fontcolor="orange"] +"AdminClone_confirmed-pre_notify_promote_0" -> "AdminClone_post_notify_promoted_0" [ style = bold] +"AdminClone_confirmed-pre_notify_promote_0" -> "AdminClone_promote_0" [ style = bold] +"AdminClone_confirmed-pre_notify_promote_0" [ style=bold color="green" fontcolor="orange"] +"AdminClone_confirmed-pre_notify_start_0" -> "AdminClone_post_notify_running_0" [ style = bold] +"AdminClone_confirmed-pre_notify_start_0" -> "AdminClone_start_0" [ style = bold] +"AdminClone_confirmed-pre_notify_start_0" [ style=bold color="green" fontcolor="orange"] +"AdminClone_post_notify_promoted_0" -> "AdminClone_confirmed-post_notify_promoted_0" [ style = bold] +"AdminClone_post_notify_promoted_0" -> "AdminDrbd:0_post_notify_promote_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_post_notify_promoted_0" -> "AdminDrbd:1_post_notify_promote_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_post_notify_promoted_0" [ style=bold color="green" fontcolor="orange"] +"AdminClone_post_notify_running_0" -> "AdminClone_confirmed-post_notify_running_0" [ style = bold] +"AdminClone_post_notify_running_0" -> "AdminDrbd:0_post_notify_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_post_notify_running_0" -> "AdminDrbd:1_post_notify_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_post_notify_running_0" [ style=bold color="green" fontcolor="orange"] +"AdminClone_pre_notify_promote_0" -> "AdminClone_confirmed-pre_notify_promote_0" [ style = bold] +"AdminClone_pre_notify_promote_0" -> "AdminDrbd:0_pre_notify_promote_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_pre_notify_promote_0" -> "AdminDrbd:1_pre_notify_promote_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_pre_notify_promote_0" [ style=bold color="green" fontcolor="orange"] +"AdminClone_pre_notify_start_0" -> "AdminClone_confirmed-pre_notify_start_0" [ style = bold] +"AdminClone_pre_notify_start_0" [ style=bold color="green" fontcolor="orange"] +"AdminClone_promote_0" -> "AdminDrbd:0_promote_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_promote_0" -> "AdminDrbd:1_promote_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_promote_0" [ style=bold color="green" fontcolor="orange"] +"AdminClone_promoted_0" -> "AdminClone_post_notify_promoted_0" [ style = bold] +"AdminClone_promoted_0" [ style=bold color="green" fontcolor="orange"] +"AdminClone_running_0" -> "AdminClone_post_notify_running_0" [ style = bold] +"AdminClone_running_0" -> "AdminClone_promote_0" [ style = bold] +"AdminClone_running_0" [ style=bold color="green" fontcolor="orange"] +"AdminClone_start_0" -> "AdminClone_running_0" [ style = bold] +"AdminClone_start_0" -> "AdminDrbd:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_start_0" -> "AdminDrbd:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminClone_start_0" [ style=bold color="green" fontcolor="orange"] +"AdminDrbd:0_monitor_59000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminDrbd:0_post_notify_promote_0 hypatia-corosync.nevis.columbia.edu" -> "AdminClone_confirmed-post_notify_promoted_0" [ style = bold] +"AdminDrbd:0_post_notify_promote_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminDrbd:0_post_notify_start_0 hypatia-corosync.nevis.columbia.edu" -> "AdminClone_confirmed-post_notify_running_0" [ style = bold] +"AdminDrbd:0_post_notify_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminDrbd:0_pre_notify_promote_0 hypatia-corosync.nevis.columbia.edu" -> "AdminClone_confirmed-pre_notify_promote_0" [ style = bold] +"AdminDrbd:0_pre_notify_promote_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminDrbd:0_promote_0 hypatia-corosync.nevis.columbia.edu" -> "AdminClone_promoted_0" [ style = bold] +"AdminDrbd:0_promote_0 hypatia-corosync.nevis.columbia.edu" -> "AdminDrbd:0_monitor_59000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminDrbd:0_promote_0 hypatia-corosync.nevis.columbia.edu" -> "FilesystemGroup:0_start_0" [ style = bold] +"AdminDrbd:0_promote_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminDrbd:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "AdminClone_running_0" [ style = bold] +"AdminDrbd:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "AdminDrbd:0_monitor_59000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminDrbd:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "AdminDrbd:0_promote_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminDrbd:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminDrbd:1_monitor_59000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminDrbd:1_post_notify_promote_0 orestes-corosync.nevis.columbia.edu" -> "AdminClone_confirmed-post_notify_promoted_0" [ style = bold] +"AdminDrbd:1_post_notify_promote_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminDrbd:1_post_notify_start_0 orestes-corosync.nevis.columbia.edu" -> "AdminClone_confirmed-post_notify_running_0" [ style = bold] +"AdminDrbd:1_post_notify_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminDrbd:1_pre_notify_promote_0 orestes-corosync.nevis.columbia.edu" -> "AdminClone_confirmed-pre_notify_promote_0" [ style = bold] +"AdminDrbd:1_pre_notify_promote_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminDrbd:1_promote_0 orestes-corosync.nevis.columbia.edu" -> "AdminClone_promoted_0" [ style = bold] +"AdminDrbd:1_promote_0 orestes-corosync.nevis.columbia.edu" -> "AdminDrbd:1_monitor_59000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminDrbd:1_promote_0 orestes-corosync.nevis.columbia.edu" -> "FilesystemGroup:1_start_0" [ style = bold] +"AdminDrbd:1_promote_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminDrbd:1_start_0 orestes-corosync.nevis.columbia.edu" -> "AdminClone_running_0" [ style = bold] +"AdminDrbd:1_start_0 orestes-corosync.nevis.columbia.edu" -> "AdminDrbd:1_monitor_59000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminDrbd:1_start_0 orestes-corosync.nevis.columbia.edu" -> "AdminDrbd:1_promote_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminDrbd:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminLvm:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminLvm:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminLvm:0_monitor_30000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminLvm:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "AdminLvm:0_monitor_30000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminLvm:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FSUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"AdminLvm:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FilesystemGroup:0_running_0" [ style = bold] +"AdminLvm:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminLvm:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminLvm:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminLvm:1_monitor_30000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"AdminLvm:1_start_0 orestes-corosync.nevis.columbia.edu" -> "AdminLvm:1_monitor_30000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminLvm:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FSUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"AdminLvm:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FilesystemGroup:1_running_0" [ style = bold] +"AdminLvm:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIP:0_monitor_30000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIP:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ClusterIP:0_monitor_30000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ClusterIP:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ClusterIPLocal:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ClusterIP:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "IPGroup:0_running_0" [ style = bold] +"ClusterIP:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIP:1_monitor_30000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIP:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ClusterIP:1_monitor_30000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ClusterIP:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ClusterIPLocal:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ClusterIP:1_start_0 orestes-corosync.nevis.columbia.edu" -> "IPGroup:1_running_0" [ style = bold] +"ClusterIP:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIPLocal:0_monitor_31000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIPLocal:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ClusterIPLocal:0_monitor_31000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ClusterIPLocal:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ClusterIPSandbox:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ClusterIPLocal:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "IPGroup:0_running_0" [ style = bold] +"ClusterIPLocal:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIPLocal:1_monitor_31000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIPLocal:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ClusterIPLocal:1_monitor_31000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ClusterIPLocal:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ClusterIPSandbox:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ClusterIPLocal:1_start_0 orestes-corosync.nevis.columbia.edu" -> "IPGroup:1_running_0" [ style = bold] +"ClusterIPLocal:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIPSandbox:0_monitor_32000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIPSandbox:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ClusterIPSandbox:0_monitor_32000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ClusterIPSandbox:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "IPGroup:0_running_0" [ style = bold] +"ClusterIPSandbox:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIPSandbox:1_monitor_32000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ClusterIPSandbox:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ClusterIPSandbox:1_monitor_32000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ClusterIPSandbox:1_start_0 orestes-corosync.nevis.columbia.edu" -> "IPGroup:1_running_0" [ style = bold] +"ClusterIPSandbox:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"CronAmbientTemperature_monitor_60000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"CronAmbientTemperature_start_0 hypatia-corosync.nevis.columbia.edu" -> "CronAmbientTemperature_monitor_60000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"CronAmbientTemperature_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Cups:0_monitor_30000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Cups:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "Cups:0_monitor_30000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"Cups:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "CupsGroup:0_running_0" [ style = bold] +"Cups:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Cups:1_monitor_30000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Cups:1_start_0 orestes-corosync.nevis.columbia.edu" -> "Cups:1_monitor_30000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"Cups:1_start_0 orestes-corosync.nevis.columbia.edu" -> "CupsGroup:1_running_0" [ style = bold] +"Cups:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"CupsClone_running_0" [ style=bold color="green" fontcolor="orange"] +"CupsClone_start_0" -> "CupsClone_running_0" [ style = bold] +"CupsClone_start_0" -> "CupsGroup:0_start_0" [ style = bold] +"CupsClone_start_0" -> "CupsGroup:1_start_0" [ style = bold] +"CupsClone_start_0" [ style=bold color="green" fontcolor="orange"] +"CupsGroup:0_running_0" -> "CupsClone_running_0" [ style = bold] +"CupsGroup:0_running_0" [ style=bold color="green" fontcolor="orange"] +"CupsGroup:0_start_0" -> "Cups:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"CupsGroup:0_start_0" -> "CupsGroup:0_running_0" [ style = bold] +"CupsGroup:0_start_0" -> "SymlinkCupsdConf:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"CupsGroup:0_start_0" -> "SymlinkUsrShareCups:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"CupsGroup:0_start_0" [ style=bold color="green" fontcolor="orange"] +"CupsGroup:1_running_0" -> "CupsClone_running_0" [ style = bold] +"CupsGroup:1_running_0" [ style=bold color="green" fontcolor="orange"] +"CupsGroup:1_start_0" -> "Cups:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"CupsGroup:1_start_0" -> "CupsGroup:1_running_0" [ style = bold] +"CupsGroup:1_start_0" -> "SymlinkCupsdConf:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"CupsGroup:1_start_0" -> "SymlinkUsrShareCups:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"CupsGroup:1_start_0" [ style=bold color="green" fontcolor="orange"] +"DhcpGroup_running_0" [ style=dashed color="red" fontcolor="orange"] +"DhcpGroup_start_0" -> "DhcpGroup_running_0" [ style = dashed] +"DhcpGroup_start_0" -> "SymlinkDhcpdConf_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"DhcpGroup_start_0" -> "SymlinkDhcpdLeases_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"DhcpGroup_start_0" -> "SymlinkSysconfigDhcpd_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"DhcpGroup_start_0" [ style=bold color="green" fontcolor="orange"] +"DhcpIP_start_0 " -> "DhcpGroup_running_0" [ style = dashed] +"DhcpIP_start_0 " [ style=dashed color="red" fontcolor="black"] +"Dhcpd_start_0 " -> "DhcpGroup_running_0" [ style = dashed] +"Dhcpd_start_0 " -> "DhcpIP_start_0 " [ style = dashed] +"Dhcpd_start_0 " [ style=dashed color="red" fontcolor="black"] +"ExportMail:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportMail:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMail:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportMailInbox:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportMail:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportsGroup:0_running_0" [ style = bold] +"ExportMail:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMail:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportMail:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMail:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportMailInbox:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportMail:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportsGroup:1_running_0" [ style = bold] +"ExportMail:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailFolders:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailFolders:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailFolders:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportMailForward:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailFolders:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportsGroup:0_running_0" [ style = bold] +"ExportMailFolders:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailFolders:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailFolders:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailFolders:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportMailForward:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailFolders:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportsGroup:1_running_0" [ style = bold] +"ExportMailFolders:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailForward:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailForward:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailForward:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportMailProcmailrc:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailForward:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportsGroup:0_running_0" [ style = bold] +"ExportMailForward:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailForward:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailForward:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailForward:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportMailProcmailrc:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailForward:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportsGroup:1_running_0" [ style = bold] +"ExportMailForward:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailInbox:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailInbox:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailInbox:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportMailFolders:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailInbox:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportsGroup:0_running_0" [ style = bold] +"ExportMailInbox:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailInbox:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailInbox:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailInbox:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportMailFolders:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailInbox:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportsGroup:1_running_0" [ style = bold] +"ExportMailInbox:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailProcmailrc:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailProcmailrc:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailProcmailrc:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailProcmailrc:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportsGroup:0_running_0" [ style = bold] +"ExportMailProcmailrc:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailProcmailrc:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailProcmailrc:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportMailProcmailrc:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportMailProcmailrc:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportsGroup:1_running_0" [ style = bold] +"ExportMailProcmailrc:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportUsrNevis:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportUsrNevis:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportUsrNevisOffsite:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportsGroup:0_running_0" [ style = bold] +"ExportUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportUsrNevis:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportUsrNevis:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportUsrNevisOffsite:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportsGroup:1_running_0" [ style = bold] +"ExportUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportUsrNevisOffsite:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportUsrNevisOffsite:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportUsrNevisOffsite:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportWWW:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportUsrNevisOffsite:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportsGroup:0_running_0" [ style = bold] +"ExportUsrNevisOffsite:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportUsrNevisOffsite:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportUsrNevisOffsite:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportUsrNevisOffsite:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportWWW:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportUsrNevisOffsite:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportsGroup:1_running_0" [ style = bold] +"ExportUsrNevisOffsite:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportWWW:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportWWW:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportWWW:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "ExportsGroup:0_running_0" [ style = bold] +"ExportWWW:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportWWW:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportWWW:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportWWW:1_start_0 orestes-corosync.nevis.columbia.edu" -> "ExportsGroup:1_running_0" [ style = bold] +"ExportWWW:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"ExportsClone_running_0" [ style=bold color="green" fontcolor="orange"] +"ExportsClone_start_0" -> "ExportsClone_running_0" [ style = bold] +"ExportsClone_start_0" -> "ExportsGroup:0_start_0" [ style = bold] +"ExportsClone_start_0" -> "ExportsGroup:1_start_0" [ style = bold] +"ExportsClone_start_0" [ style=bold color="green" fontcolor="orange"] +"ExportsGroup:0_running_0" -> "ExportsClone_running_0" [ style = bold] +"ExportsGroup:0_running_0" [ style=bold color="green" fontcolor="orange"] +"ExportsGroup:0_start_0" -> "ExportMail:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:0_start_0" -> "ExportMailFolders:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:0_start_0" -> "ExportMailForward:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:0_start_0" -> "ExportMailInbox:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:0_start_0" -> "ExportMailProcmailrc:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:0_start_0" -> "ExportUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:0_start_0" -> "ExportUsrNevisOffsite:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:0_start_0" -> "ExportWWW:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:0_start_0" -> "ExportsGroup:0_running_0" [ style = bold] +"ExportsGroup:0_start_0" [ style=bold color="green" fontcolor="orange"] +"ExportsGroup:1_running_0" -> "ExportsClone_running_0" [ style = bold] +"ExportsGroup:1_running_0" [ style=bold color="green" fontcolor="orange"] +"ExportsGroup:1_start_0" -> "ExportMail:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:1_start_0" -> "ExportMailFolders:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:1_start_0" -> "ExportMailForward:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:1_start_0" -> "ExportMailInbox:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:1_start_0" -> "ExportMailProcmailrc:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:1_start_0" -> "ExportUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:1_start_0" -> "ExportUsrNevisOffsite:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:1_start_0" -> "ExportWWW:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"ExportsGroup:1_start_0" -> "ExportsGroup:1_running_0" [ style = bold] +"ExportsGroup:1_start_0" [ style=bold color="green" fontcolor="orange"] +"FSMail:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSMail:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSMail:0_monitor_20000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSMail:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FSMail:0_monitor_20000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSMail:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FSWork:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSMail:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FilesystemGroup:0_running_0" [ style = bold] +"FSMail:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSMail:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSMail:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSMail:1_monitor_20000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSMail:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FSMail:1_monitor_20000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSMail:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FSWork:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSMail:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FilesystemGroup:1_running_0" [ style = bold] +"FSMail:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSUsrNevis:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSUsrNevis:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSUsrNevis:0_monitor_20000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FSUsrNevis:0_monitor_20000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FSVarNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FilesystemGroup:0_running_0" [ style = bold] +"FSUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSUsrNevis:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSUsrNevis:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSUsrNevis:1_monitor_20000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FSUsrNevis:1_monitor_20000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FSVarNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FilesystemGroup:1_running_0" [ style = bold] +"FSUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVarNevis:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSVarNevis:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVarNevis:0_monitor_20000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVarNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FSVarNevis:0_monitor_20000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSVarNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FSVirtualMachines:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSVarNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FilesystemGroup:0_running_0" [ style = bold] +"FSVarNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVarNevis:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSVarNevis:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVarNevis:1_monitor_20000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVarNevis:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FSVarNevis:1_monitor_20000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSVarNevis:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FSVirtualMachines:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSVarNevis:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FilesystemGroup:1_running_0" [ style = bold] +"FSVarNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVirtualMachines:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSVirtualMachines:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVirtualMachines:0_monitor_20000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVirtualMachines:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FSMail:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSVirtualMachines:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FSVirtualMachines:0_monitor_20000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSVirtualMachines:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FilesystemGroup:0_running_0" [ style = bold] +"FSVirtualMachines:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVirtualMachines:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSVirtualMachines:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVirtualMachines:1_monitor_20000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSVirtualMachines:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FSMail:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSVirtualMachines:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FSVirtualMachines:1_monitor_20000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSVirtualMachines:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FilesystemGroup:1_running_0" [ style = bold] +"FSVirtualMachines:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSWork:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSWork:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSWork:0_monitor_20000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSWork:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FSWork:0_monitor_20000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FSWork:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "FilesystemGroup:0_running_0" [ style = bold] +"FSWork:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSWork:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSWork:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSWork:1_monitor_20000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FSWork:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FSWork:1_monitor_20000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FSWork:1_start_0 orestes-corosync.nevis.columbia.edu" -> "FilesystemGroup:1_running_0" [ style = bold] +"FSWork:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"FilesystemClone_running_0" -> "CronAmbientTemperature_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemClone_running_0" -> "CupsClone_start_0" [ style = bold] +"FilesystemClone_running_0" -> "DhcpGroup_start_0" [ style = bold] +"FilesystemClone_running_0" -> "ExportsClone_start_0" [ style = bold] +"FilesystemClone_running_0" -> "IPClone_start_0" [ style = bold] +"FilesystemClone_running_0" -> "LibvirtdClone_start_0" [ style = bold] +"FilesystemClone_running_0" -> "TftpClone_start_0" [ style = bold] +"FilesystemClone_running_0" [ style=bold color="green" fontcolor="orange"] +"FilesystemClone_start_0" -> "FilesystemClone_running_0" [ style = bold] +"FilesystemClone_start_0" -> "FilesystemGroup:0_start_0" [ style = bold] +"FilesystemClone_start_0" -> "FilesystemGroup:1_start_0" [ style = bold] +"FilesystemClone_start_0" [ style=bold color="green" fontcolor="orange"] +"FilesystemGroup:0_running_0" -> "CupsGroup:0_start_0" [ style = bold] +"FilesystemGroup:0_running_0" -> "ExportsGroup:0_start_0" [ style = bold] +"FilesystemGroup:0_running_0" -> "FilesystemClone_running_0" [ style = bold] +"FilesystemGroup:0_running_0" -> "LibvirtdGroup:0_start_0" [ style = bold] +"FilesystemGroup:0_running_0" -> "TftpGroup:0_start_0" [ style = bold] +"FilesystemGroup:0_running_0" [ style=bold color="green" fontcolor="orange"] +"FilesystemGroup:0_start_0" -> "AdminLvm:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:0_start_0" -> "FSMail:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:0_start_0" -> "FSUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:0_start_0" -> "FSVarNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:0_start_0" -> "FSVirtualMachines:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:0_start_0" -> "FSWork:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:0_start_0" -> "FilesystemGroup:0_running_0" [ style = bold] +"FilesystemGroup:0_start_0" [ style=bold color="green" fontcolor="orange"] +"FilesystemGroup:1_running_0" -> "CupsGroup:1_start_0" [ style = bold] +"FilesystemGroup:1_running_0" -> "ExportsGroup:1_start_0" [ style = bold] +"FilesystemGroup:1_running_0" -> "FilesystemClone_running_0" [ style = bold] +"FilesystemGroup:1_running_0" -> "LibvirtdGroup:1_start_0" [ style = bold] +"FilesystemGroup:1_running_0" -> "TftpGroup:1_start_0" [ style = bold] +"FilesystemGroup:1_running_0" [ style=bold color="green" fontcolor="orange"] +"FilesystemGroup:1_start_0" -> "AdminLvm:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:1_start_0" -> "FSMail:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:1_start_0" -> "FSUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:1_start_0" -> "FSVarNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:1_start_0" -> "FSVirtualMachines:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:1_start_0" -> "FSWork:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"FilesystemGroup:1_start_0" -> "FilesystemGroup:1_running_0" [ style = bold] +"FilesystemGroup:1_start_0" [ style=bold color="green" fontcolor="orange"] +"IPClone_running_0" [ style=bold color="green" fontcolor="orange"] +"IPClone_start_0" -> "IPClone_running_0" [ style = bold] +"IPClone_start_0" -> "IPGroup:0_start_0" [ style = bold] +"IPClone_start_0" -> "IPGroup:1_start_0" [ style = bold] +"IPClone_start_0" [ style=bold color="green" fontcolor="orange"] +"IPGroup:0_running_0" -> "IPClone_running_0" [ style = bold] +"IPGroup:0_running_0" [ style=bold color="green" fontcolor="orange"] +"IPGroup:0_start_0" -> "ClusterIP:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"IPGroup:0_start_0" -> "ClusterIPLocal:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"IPGroup:0_start_0" -> "ClusterIPSandbox:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"IPGroup:0_start_0" -> "IPGroup:0_running_0" [ style = bold] +"IPGroup:0_start_0" [ style=bold color="green" fontcolor="orange"] +"IPGroup:1_running_0" -> "IPClone_running_0" [ style = bold] +"IPGroup:1_running_0" [ style=bold color="green" fontcolor="orange"] +"IPGroup:1_start_0" -> "ClusterIP:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"IPGroup:1_start_0" -> "ClusterIPLocal:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"IPGroup:1_start_0" -> "ClusterIPSandbox:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"IPGroup:1_start_0" -> "IPGroup:1_running_0" [ style = bold] +"IPGroup:1_start_0" [ style=bold color="green" fontcolor="orange"] +"KVM-guest_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"KVM-guest_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"KVM-guest_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"KVM-guest_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"KVM-guest_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Libvirtd:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"Libvirtd:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Libvirtd:0_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"Libvirtd:0_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Libvirtd:0_monitor_30000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Libvirtd:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "Libvirtd:0_monitor_30000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"Libvirtd:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "LibvirtdGroup:0_running_0" [ style = bold] +"Libvirtd:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Libvirtd:1_monitor_30000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Libvirtd:1_start_0 orestes-corosync.nevis.columbia.edu" -> "Libvirtd:1_monitor_30000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"Libvirtd:1_start_0 orestes-corosync.nevis.columbia.edu" -> "LibvirtdGroup:1_running_0" [ style = bold] +"Libvirtd:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"LibvirtdClone_running_0" -> "KVM-guest_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"LibvirtdClone_running_0" -> "Proxy_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"LibvirtdClone_running_0" [ style=bold color="green" fontcolor="orange"] +"LibvirtdClone_start_0" -> "LibvirtdClone_running_0" [ style = bold] +"LibvirtdClone_start_0" -> "LibvirtdGroup:0_start_0" [ style = bold] +"LibvirtdClone_start_0" -> "LibvirtdGroup:1_start_0" [ style = bold] +"LibvirtdClone_start_0" [ style=bold color="green" fontcolor="orange"] +"LibvirtdGroup:0_running_0" -> "LibvirtdClone_running_0" [ style = bold] +"LibvirtdGroup:0_running_0" [ style=bold color="green" fontcolor="orange"] +"LibvirtdGroup:0_start_0" -> "Libvirtd:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"LibvirtdGroup:0_start_0" -> "LibvirtdGroup:0_running_0" [ style = bold] +"LibvirtdGroup:0_start_0" -> "SymlinkEtcLibvirt:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"LibvirtdGroup:0_start_0" [ style=bold color="green" fontcolor="orange"] +"LibvirtdGroup:1_running_0" -> "LibvirtdClone_running_0" [ style = bold] +"LibvirtdGroup:1_running_0" [ style=bold color="green" fontcolor="orange"] +"LibvirtdGroup:1_start_0" -> "Libvirtd:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"LibvirtdGroup:1_start_0" -> "LibvirtdGroup:1_running_0" [ style = bold] +"LibvirtdGroup:1_start_0" -> "SymlinkEtcLibvirt:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"LibvirtdGroup:1_start_0" [ style=bold color="green" fontcolor="orange"] +"Proxy_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"Proxy_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Proxy_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"Proxy_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Proxy_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"StonithHypatia_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"StonithOrestes_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkCupsdConf:0_monitor_60000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkCupsdConf:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "Cups:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkCupsdConf:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "CupsGroup:0_running_0" [ style = bold] +"SymlinkCupsdConf:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "SymlinkCupsdConf:0_monitor_60000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkCupsdConf:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkCupsdConf:1_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkCupsdConf:1_start_0 orestes-corosync.nevis.columbia.edu" -> "Cups:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkCupsdConf:1_start_0 orestes-corosync.nevis.columbia.edu" -> "CupsGroup:1_running_0" [ style = bold] +"SymlinkCupsdConf:1_start_0 orestes-corosync.nevis.columbia.edu" -> "SymlinkCupsdConf:1_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkCupsdConf:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkDhcpdConf_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkDhcpdConf_start_0 orestes-corosync.nevis.columbia.edu" -> "DhcpGroup_running_0" [ style = dashed] +"SymlinkDhcpdConf_start_0 orestes-corosync.nevis.columbia.edu" -> "SymlinkDhcpdConf_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkDhcpdConf_start_0 orestes-corosync.nevis.columbia.edu" -> "SymlinkSysconfigDhcpd_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkDhcpdConf_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkDhcpdLeases_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkDhcpdLeases_start_0 orestes-corosync.nevis.columbia.edu" -> "DhcpGroup_running_0" [ style = dashed] +"SymlinkDhcpdLeases_start_0 orestes-corosync.nevis.columbia.edu" -> "Dhcpd_start_0 " [ style = dashed] +"SymlinkDhcpdLeases_start_0 orestes-corosync.nevis.columbia.edu" -> "SymlinkDhcpdLeases_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkDhcpdLeases_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkEtcLibvirt:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkEtcLibvirt:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkEtcLibvirt:0_monitor_60000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkEtcLibvirt:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "Libvirtd:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkEtcLibvirt:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "LibvirtdGroup:0_running_0" [ style = bold] +"SymlinkEtcLibvirt:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "SymlinkEtcLibvirt:0_monitor_60000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkEtcLibvirt:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkEtcLibvirt:1_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkEtcLibvirt:1_start_0 orestes-corosync.nevis.columbia.edu" -> "Libvirtd:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkEtcLibvirt:1_start_0 orestes-corosync.nevis.columbia.edu" -> "LibvirtdGroup:1_running_0" [ style = bold] +"SymlinkEtcLibvirt:1_start_0 orestes-corosync.nevis.columbia.edu" -> "SymlinkEtcLibvirt:1_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkEtcLibvirt:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkSysconfigDhcpd_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkSysconfigDhcpd_start_0 orestes-corosync.nevis.columbia.edu" -> "DhcpGroup_running_0" [ style = dashed] +"SymlinkSysconfigDhcpd_start_0 orestes-corosync.nevis.columbia.edu" -> "SymlinkDhcpdLeases_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkSysconfigDhcpd_start_0 orestes-corosync.nevis.columbia.edu" -> "SymlinkSysconfigDhcpd_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkSysconfigDhcpd_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkTftp:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkTftp:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkTftp:0_monitor_60000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkTftp:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "SymlinkTftp:0_monitor_60000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkTftp:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "TftpGroup:0_running_0" [ style = bold] +"SymlinkTftp:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "Xinetd:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkTftp:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkTftp:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkTftp:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkTftp:1_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkTftp:1_start_0 orestes-corosync.nevis.columbia.edu" -> "SymlinkTftp:1_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkTftp:1_start_0 orestes-corosync.nevis.columbia.edu" -> "TftpGroup:1_running_0" [ style = bold] +"SymlinkTftp:1_start_0 orestes-corosync.nevis.columbia.edu" -> "Xinetd:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkTftp:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkUsrShareCups:0_monitor_60000 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkUsrShareCups:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "CupsGroup:0_running_0" [ style = bold] +"SymlinkUsrShareCups:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "SymlinkCupsdConf:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkUsrShareCups:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "SymlinkUsrShareCups:0_monitor_60000 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkUsrShareCups:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkUsrShareCups:1_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"SymlinkUsrShareCups:1_start_0 orestes-corosync.nevis.columbia.edu" -> "CupsGroup:1_running_0" [ style = bold] +"SymlinkUsrShareCups:1_start_0 orestes-corosync.nevis.columbia.edu" -> "SymlinkCupsdConf:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkUsrShareCups:1_start_0 orestes-corosync.nevis.columbia.edu" -> "SymlinkUsrShareCups:1_monitor_60000 orestes-corosync.nevis.columbia.edu" [ style = bold] +"SymlinkUsrShareCups:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"TftpClone_running_0" [ style=bold color="green" fontcolor="orange"] +"TftpClone_start_0" -> "TftpClone_running_0" [ style = bold] +"TftpClone_start_0" -> "TftpGroup:0_start_0" [ style = bold] +"TftpClone_start_0" -> "TftpGroup:1_start_0" [ style = bold] +"TftpClone_start_0" [ style=bold color="green" fontcolor="orange"] +"TftpGroup:0_running_0" -> "TftpClone_running_0" [ style = bold] +"TftpGroup:0_running_0" [ style=bold color="green" fontcolor="orange"] +"TftpGroup:0_start_0" -> "SymlinkTftp:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"TftpGroup:0_start_0" -> "TftpGroup:0_running_0" [ style = bold] +"TftpGroup:0_start_0" -> "Xinetd:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"TftpGroup:0_start_0" [ style=bold color="green" fontcolor="orange"] +"TftpGroup:1_running_0" -> "TftpClone_running_0" [ style = bold] +"TftpGroup:1_running_0" [ style=bold color="green" fontcolor="orange"] +"TftpGroup:1_start_0" -> "SymlinkTftp:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"TftpGroup:1_start_0" -> "TftpGroup:1_running_0" [ style = bold] +"TftpGroup:1_start_0" -> "Xinetd:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"TftpGroup:1_start_0" [ style=bold color="green" fontcolor="orange"] +"Xinetd:0_monitor_0 hypatia-corosync.nevis.columbia.edu" -> "probe_complete hypatia-corosync.nevis.columbia.edu" [ style = bold] +"Xinetd:0_monitor_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Xinetd:0_start_0 hypatia-corosync.nevis.columbia.edu" -> "TftpGroup:0_running_0" [ style = bold] +"Xinetd:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Xinetd:1_monitor_0 orestes-corosync.nevis.columbia.edu" -> "probe_complete orestes-corosync.nevis.columbia.edu" [ style = bold] +"Xinetd:1_monitor_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"Xinetd:1_start_0 orestes-corosync.nevis.columbia.edu" -> "TftpGroup:1_running_0" [ style = bold] +"Xinetd:1_start_0 orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"probe_complete hypatia-corosync.nevis.columbia.edu" -> "probe_complete" [ style = bold] +"probe_complete hypatia-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"probe_complete orestes-corosync.nevis.columbia.edu" -> "probe_complete" [ style = bold] +"probe_complete orestes-corosync.nevis.columbia.edu" [ style=bold color="green" fontcolor="black"] +"probe_complete" -> "AdminLvm:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "AdminLvm:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportMail:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportMail:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportMailFolders:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportMailFolders:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportMailForward:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportMailForward:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportMailInbox:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportMailInbox:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportMailProcmailrc:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportMailProcmailrc:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportUsrNevisOffsite:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportUsrNevisOffsite:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportWWW:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "ExportWWW:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "FSMail:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "FSMail:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "FSUsrNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "FSUsrNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "FSVarNevis:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "FSVarNevis:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "FSVirtualMachines:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "FSVirtualMachines:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "FSWork:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "FSWork:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "KVM-guest_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "Libvirtd:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "Libvirtd:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "Proxy_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "SymlinkEtcLibvirt:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "SymlinkEtcLibvirt:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "SymlinkTftp:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "SymlinkTftp:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "Xinetd:0_start_0 hypatia-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" -> "Xinetd:1_start_0 orestes-corosync.nevis.columbia.edu" [ style = bold] +"probe_complete" [ style=bold color="green" fontcolor="orange"] +} diff --git a/pengine/test10/master-probed-score.exp b/pengine/test10/master-probed-score.exp new file mode 100644 index 0000000000..cde16c2262 --- /dev/null +++ b/pengine/test10/master-probed-score.exp @@ -0,0 +1,2904 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pengine/test10/master-probed-score.scores b/pengine/test10/master-probed-score.scores new file mode 100644 index 0000000000..f8e319691f --- /dev/null +++ b/pengine/test10/master-probed-score.scores @@ -0,0 +1,393 @@ +AdminDrbd:0 promotion score on hypatia-corosync.nevis.columbia.edu: 5 +AdminDrbd:1 promotion score on orestes-corosync.nevis.columbia.edu: INFINITY +Allocation scores: +clone_color: AdminClone allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: AdminClone allocation score on orestes-corosync.nevis.columbia.edu: INFINITY +clone_color: AdminDrbd:0 allocation score on hypatia-corosync.nevis.columbia.edu: 5 +clone_color: AdminDrbd:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: AdminDrbd:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: AdminDrbd:1 allocation score on orestes-corosync.nevis.columbia.edu: 5 +clone_color: AdminLvm:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: AdminLvm:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: AdminLvm:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: AdminLvm:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIP:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIP:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIP:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIP:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIPLocal:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIPLocal:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIPLocal:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIPLocal:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIPSandbox:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIPSandbox:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIPSandbox:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ClusterIPSandbox:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: Cups:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: Cups:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: Cups:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: Cups:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: CupsClone allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: CupsClone allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: CupsGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: CupsGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: CupsGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: CupsGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportMail:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportMail:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportMail:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportMail:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailFolders:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailFolders:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailFolders:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailFolders:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailForward:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailForward:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailForward:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailForward:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailInbox:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailInbox:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailInbox:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailInbox:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailProcmailrc:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailProcmailrc:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailProcmailrc:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportMailProcmailrc:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportUsrNevis:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportUsrNevis:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportUsrNevis:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportUsrNevis:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportUsrNevisOffsite:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportUsrNevisOffsite:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportUsrNevisOffsite:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportUsrNevisOffsite:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportWWW:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportWWW:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportWWW:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportWWW:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportsClone allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportsClone allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportsGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportsGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: ExportsGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: ExportsGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FSMail:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FSMail:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FSMail:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FSMail:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FSUsrNevis:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FSUsrNevis:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FSUsrNevis:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FSUsrNevis:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FSVarNevis:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FSVarNevis:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FSVarNevis:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FSVarNevis:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FSVirtualMachines:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FSVirtualMachines:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FSVirtualMachines:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FSVirtualMachines:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FSWork:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FSWork:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FSWork:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FSWork:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FilesystemClone allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FilesystemClone allocation score on orestes-corosync.nevis.columbia.edu: INFINITY +clone_color: FilesystemGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FilesystemGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: FilesystemGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: FilesystemGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: IPClone allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: IPClone allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: IPGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: IPGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: IPGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: IPGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: Libvirtd:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: Libvirtd:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: Libvirtd:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: Libvirtd:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: LibvirtdClone allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: LibvirtdClone allocation score on orestes-corosync.nevis.columbia.edu: INFINITY +clone_color: LibvirtdGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: LibvirtdGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: LibvirtdGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: LibvirtdGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkCupsdConf:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkCupsdConf:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkCupsdConf:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkCupsdConf:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkEtcLibvirt:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkEtcLibvirt:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkEtcLibvirt:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkEtcLibvirt:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkTftp:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkTftp:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkTftp:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkTftp:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkUsrShareCups:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkUsrShareCups:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkUsrShareCups:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: SymlinkUsrShareCups:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: TftpClone allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: TftpClone allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: TftpGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: TftpGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: TftpGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: TftpGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: Xinetd:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: Xinetd:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +clone_color: Xinetd:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +clone_color: Xinetd:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: AdminLvm:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: AdminLvm:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: AdminLvm:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: AdminLvm:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ClusterIP:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ClusterIP:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ClusterIP:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ClusterIP:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ClusterIPLocal:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ClusterIPLocal:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ClusterIPLocal:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ClusterIPLocal:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ClusterIPSandbox:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ClusterIPSandbox:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ClusterIPSandbox:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ClusterIPSandbox:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: Cups:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: Cups:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: Cups:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: Cups:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: CupsGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: CupsGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: CupsGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: CupsGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: DhcpGroup allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: DhcpGroup allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: DhcpIP allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: DhcpIP allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: Dhcpd allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: Dhcpd allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportMail:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ExportMail:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportMail:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: ExportMail:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportMailFolders:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ExportMailFolders:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportMailFolders:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: ExportMailFolders:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportMailForward:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ExportMailForward:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportMailForward:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: ExportMailForward:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportMailInbox:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ExportMailInbox:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportMailInbox:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: ExportMailInbox:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportMailProcmailrc:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ExportMailProcmailrc:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportMailProcmailrc:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: ExportMailProcmailrc:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportUsrNevis:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ExportUsrNevis:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportUsrNevis:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: ExportUsrNevis:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportUsrNevisOffsite:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ExportUsrNevisOffsite:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportUsrNevisOffsite:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: ExportUsrNevisOffsite:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportWWW:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ExportWWW:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportWWW:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: ExportWWW:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportsGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: ExportsGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: ExportsGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: ExportsGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FSMail:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: FSMail:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FSMail:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: FSMail:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FSUsrNevis:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: FSUsrNevis:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FSUsrNevis:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: FSUsrNevis:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FSVarNevis:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: FSVarNevis:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FSVarNevis:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: FSVarNevis:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FSVirtualMachines:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: FSVirtualMachines:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FSVirtualMachines:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: FSVirtualMachines:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FSWork:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: FSWork:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FSWork:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: FSWork:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FilesystemGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: FilesystemGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: FilesystemGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: FilesystemGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: IPGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: IPGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: IPGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: IPGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: Libvirtd:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: Libvirtd:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: Libvirtd:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: Libvirtd:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: LibvirtdGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: LibvirtdGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: LibvirtdGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: LibvirtdGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: SymlinkCupsdConf:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: SymlinkCupsdConf:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: SymlinkCupsdConf:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: SymlinkCupsdConf:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: SymlinkDhcpdConf allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: SymlinkDhcpdConf allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: SymlinkDhcpdLeases allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: SymlinkDhcpdLeases allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: SymlinkEtcLibvirt:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: SymlinkEtcLibvirt:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: SymlinkEtcLibvirt:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: SymlinkEtcLibvirt:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: SymlinkSysconfigDhcpd allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: SymlinkSysconfigDhcpd allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: SymlinkTftp:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: SymlinkTftp:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: SymlinkTftp:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: SymlinkTftp:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: SymlinkUsrShareCups:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: SymlinkUsrShareCups:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: SymlinkUsrShareCups:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: SymlinkUsrShareCups:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: TftpGroup:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: TftpGroup:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: TftpGroup:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: TftpGroup:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: Xinetd:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +group_color: Xinetd:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +group_color: Xinetd:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +group_color: Xinetd:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: AdminDrbd:0 allocation score on hypatia-corosync.nevis.columbia.edu: 5 +native_color: AdminDrbd:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: AdminDrbd:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: AdminDrbd:1 allocation score on orestes-corosync.nevis.columbia.edu: 5 +native_color: AdminLvm:0 allocation score on hypatia-corosync.nevis.columbia.edu: 5 +native_color: AdminLvm:0 allocation score on orestes-corosync.nevis.columbia.edu: 5 +native_color: AdminLvm:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: AdminLvm:1 allocation score on orestes-corosync.nevis.columbia.edu: 5 +native_color: ClusterIP:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ClusterIP:0 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: ClusterIP:1 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ClusterIP:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: ClusterIPLocal:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ClusterIPLocal:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: ClusterIPLocal:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: ClusterIPLocal:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: ClusterIPSandbox:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ClusterIPSandbox:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: ClusterIPSandbox:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: ClusterIPSandbox:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: CronAmbientTemperature allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: CronAmbientTemperature allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: Cups:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: Cups:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: Cups:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: Cups:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: DhcpIP allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: DhcpIP allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: Dhcpd allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: Dhcpd allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportMail:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ExportMail:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportMail:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportMail:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: ExportMailFolders:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ExportMailFolders:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportMailFolders:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportMailFolders:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: ExportMailForward:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ExportMailForward:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportMailForward:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportMailForward:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: ExportMailInbox:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ExportMailInbox:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportMailInbox:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportMailInbox:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: ExportMailProcmailrc:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ExportMailProcmailrc:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportMailProcmailrc:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportMailProcmailrc:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: ExportUsrNevis:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ExportUsrNevis:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportUsrNevis:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportUsrNevis:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: ExportUsrNevisOffsite:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ExportUsrNevisOffsite:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportUsrNevisOffsite:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportUsrNevisOffsite:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: ExportWWW:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: ExportWWW:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportWWW:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: ExportWWW:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: FSMail:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: FSMail:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: FSMail:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: FSMail:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: FSUsrNevis:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: FSUsrNevis:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: FSUsrNevis:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: FSUsrNevis:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: FSVarNevis:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: FSVarNevis:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: FSVarNevis:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: FSVarNevis:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: FSVirtualMachines:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: FSVirtualMachines:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: FSVirtualMachines:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: FSVirtualMachines:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: FSWork:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: FSWork:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: FSWork:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: FSWork:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: KVM-guest allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: KVM-guest allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: Libvirtd:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: Libvirtd:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: Libvirtd:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: Libvirtd:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: Proxy allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: Proxy allocation score on orestes-corosync.nevis.columbia.edu: INFINITY +native_color: StonithHypatia allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: StonithHypatia allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: StonithOrestes allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: StonithOrestes allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: SymlinkCupsdConf:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: SymlinkCupsdConf:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: SymlinkCupsdConf:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: SymlinkCupsdConf:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: SymlinkDhcpdConf allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: SymlinkDhcpdConf allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: SymlinkDhcpdLeases allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: SymlinkDhcpdLeases allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: SymlinkEtcLibvirt:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: SymlinkEtcLibvirt:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: SymlinkEtcLibvirt:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: SymlinkEtcLibvirt:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: SymlinkSysconfigDhcpd allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: SymlinkSysconfigDhcpd allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: SymlinkTftp:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: SymlinkTftp:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: SymlinkTftp:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: SymlinkTftp:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: SymlinkUsrShareCups:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: SymlinkUsrShareCups:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: SymlinkUsrShareCups:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: SymlinkUsrShareCups:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 +native_color: Xinetd:0 allocation score on hypatia-corosync.nevis.columbia.edu: 0 +native_color: Xinetd:0 allocation score on orestes-corosync.nevis.columbia.edu: -INFINITY +native_color: Xinetd:1 allocation score on hypatia-corosync.nevis.columbia.edu: -INFINITY +native_color: Xinetd:1 allocation score on orestes-corosync.nevis.columbia.edu: 0 diff --git a/pengine/test10/master-probed-score.xml b/pengine/test10/master-probed-score.xml new file mode 100644 index 0000000000..cbc2fffbb9 --- /dev/null +++ b/pengine/test10/master-probed-score.xml @@ -0,0 +1,699 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +