| 992 | } |
| 993 | |
| 994 | void |
| 995 | Recurring_Stopped(resource_t * rsc, action_t * start, node_t * node, pe_working_set_t * data_set) |
| 996 | { |
| 997 | if (is_not_set(data_set->flags, pe_flag_maintenance_mode)) { |
| 998 | xmlNode *operation = NULL; |
| 999 | |
| 1000 | for (operation = __xml_first_child(rsc->ops_xml); operation != NULL; |
| 1001 | operation = __xml_next(operation)) { |
| 1002 | if (crm_str_eq((const char *)operation->name, "op", TRUE)) { |
| 1003 | RecurringOp_Stopped(rsc, start, node, operation, data_set); |
| 1004 | } |
| 1005 | } |
| 1006 | } |
| 1007 | } |
| 1008 | |
| 1009 | void |
| 1010 | native_create_actions(resource_t * rsc, pe_working_set_t * data_set) |
no test coverage detected