| 765 | } |
| 766 | |
| 767 | void |
| 768 | Recurring(resource_t * rsc, action_t * start, node_t * node, pe_working_set_t * data_set) |
| 769 | { |
| 770 | if (is_not_set(data_set->flags, pe_flag_maintenance_mode)) { |
| 771 | xmlNode *operation = NULL; |
| 772 | |
| 773 | for (operation = __xml_first_child(rsc->ops_xml); operation != NULL; |
| 774 | operation = __xml_next(operation)) { |
| 775 | if (crm_str_eq((const char *)operation->name, "op", TRUE)) { |
| 776 | RecurringOp(rsc, start, node, operation, data_set); |
| 777 | } |
| 778 | } |
| 779 | } |
| 780 | } |
| 781 | |
| 782 | void |
| 783 | RecurringOp_Stopped(resource_t * rsc, action_t * start, node_t * node, |
no test coverage detected