├── CONTRIBUTING.md ├── COPYING ├── ChangeLog.md ├── GNUmakefile ├── INSTALL.md ├── Makefile.am ├── README.markdown ├── SECURITY.md ├── agents ├── Makefile.am ├── alerts │ ├── Makefile.am │ ├── alert_file.sh.sample │ ├── alert_smtp.sh.sample │ └── alert_snmp.sh.sample ├── ocf │ ├── ClusterMon.in │ ├── Dummy.in │ ├── HealthCPU.in │ ├── HealthIOWait.in │ ├── HealthSMART.in │ ├── Makefile.am │ ├── Stateful.in │ ├── SysInfo.in │ ├── attribute.in │ ├── controld.in │ ├── ifspeed.in │ ├── ping.in │ └── remote.in └── stonith │ ├── Makefile.am │ ├── fence_legacy.in │ └── fence_watchdog.in ├── autogen.sh ├── configure.ac ├── cts ├── Makefile.am ├── README.md ├── benchmark │ ├── Makefile.am │ ├── README.benchmark │ ├── clubench.in │ └── control ├── cli │ ├── constraints.xml │ ├── crm_diff_new.xml │ ├── crm_diff_old.xml │ ├── crm_diff_patchset.xml │ ├── crm_diff_patchset_cib.xml │ ├── crm_mon-T180.xml │ ├── crm_mon-feature_set.xml │ ├── crm_mon-partial.xml │ ├── crm_mon-rsc-maint.xml │ ├── crm_mon-unmanaged.xml │ ├── crm_mon.xml │ ├── crm_resource_digests.xml │ ├── crm_verify_invalid_bz.xml │ ├── crm_verify_invalid_no_stonith.xml │ ├── crmadmin-cluster-remote-guest-nodes.xml │ ├── regression.access_render.exp │ ├── regression.acls.exp │ ├── regression.agents.exp │ ├── regression.cibadmin.exp │ ├── regression.crm_attribute.exp │ ├── regression.crm_diff.exp │ ├── regression.crm_mon.exp │ ├── regression.crm_resource.exp │ ├── regression.crm_shadow.exp │ ├── regression.crm_simulate.exp │ ├── regression.crm_standby.exp │ ├── regression.crm_ticket.exp │ ├── regression.crm_verify.exp │ ├── regression.crmadmin.exp │ ├── regression.daemons.exp │ ├── regression.dates.exp │ ├── regression.error_codes.exp │ ├── regression.feature_set.exp │ ├── regression.rules.exp │ ├── regression.upgrade.exp │ ├── regression.validity.exp │ └── tickets.xml ├── cluster_test.in ├── cts-attrd.in ├── cts-cli.in ├── cts-exec.in ├── cts-fencing.in ├── cts-lab.in ├── cts-regression.in ├── cts-scheduler.in ├── cts-schemas.in ├── scheduler │ ├── Makefile.am │ ├── dot │ │ ├── 1-a-then-bm-move-b.dot │ │ ├── 10-a-then-bm-b-move-a-clone.dot │ │ ├── 11-a-then-bm-b-move-a-clone-starting.dot │ │ ├── 1360.dot │ │ ├── 1484.dot │ │ ├── 1494.dot │ │ ├── 2-am-then-b-move-a.dot │ │ ├── 3-am-then-bm-both-migrate.dot │ │ ├── 4-am-then-bm-b-not-migratable.dot │ │ ├── 5-am-then-bm-a-not-migratable.dot │ │ ├── 594.dot │ │ ├── 6-migrate-group.dot │ │ ├── 662.dot │ │ ├── 696.dot │ │ ├── 7-migrate-group-one-unmigratable.dot │ │ ├── 726.dot │ │ ├── 735.dot │ │ ├── 764.dot │ │ ├── 797.dot │ │ ├── 8-am-then-bm-a-migrating-b-stopping.dot │ │ ├── 829.dot │ │ ├── 9-am-then-bm-b-migrating-a-stopping.dot │ │ ├── 994-2.dot │ │ ├── 994.dot │ │ ├── Makefile.am │ │ ├── a-demote-then-b-migrate.dot │ │ ├── a-promote-then-b-migrate.dot │ │ ├── allow-unhealthy-nodes.dot │ │ ├── anon-instance-pending.dot │ │ ├── anti-colocation-order.dot │ │ ├── anti-colocation-promoted.dot │ │ ├── anti-colocation-unpromoted.dot │ │ ├── asymmetric.dot │ │ ├── asymmetrical-order-move.dot │ │ ├── asymmetrical-order-restart.dot │ │ ├── attrs1.dot │ │ ├── attrs2.dot │ │ ├── attrs3.dot │ │ ├── attrs4.dot │ │ ├── attrs5.dot │ │ ├── attrs6.dot │ │ ├── attrs7.dot │ │ ├── attrs8.dot │ │ ├── balanced.dot │ │ ├── banned-group-inner-constraints.dot │ │ ├── base-score.dot │ │ ├── bnc-515172.dot │ │ ├── bug-1572-1.dot │ │ ├── bug-1572-2.dot │ │ ├── bug-1573.dot │ │ ├── bug-1685.dot │ │ ├── bug-1718.dot │ │ ├── bug-1765.dot │ │ ├── bug-1820-1.dot │ │ ├── bug-1820.dot │ │ ├── bug-1822.dot │ │ ├── bug-5014-A-start-B-start.dot │ │ ├── bug-5014-A-stop-B-started.dot │ │ ├── bug-5014-A-stopped-B-stopped.dot │ │ ├── bug-5014-CLONE-A-start-B-start.dot │ │ ├── bug-5014-CLONE-A-stop-B-started.dot │ │ ├── bug-5014-CthenAthenB-C-stopped.dot │ │ ├── bug-5014-GROUP-A-start-B-start.dot │ │ ├── bug-5014-GROUP-A-stopped-B-started.dot │ │ ├── bug-5014-GROUP-A-stopped-B-stopped.dot │ │ ├── bug-5014-ordered-set-symmetrical-false.dot │ │ ├── bug-5014-ordered-set-symmetrical-true.dot │ │ ├── bug-5025-1.dot │ │ ├── bug-5025-2.dot │ │ ├── bug-5025-3.dot │ │ ├── bug-5025-4.dot │ │ ├── bug-5028-bottom.dot │ │ ├── bug-5028-detach.dot │ │ ├── bug-5028.dot │ │ ├── bug-5038.dot │ │ ├── bug-5059.dot │ │ ├── bug-5069-op-disabled.dot │ │ ├── bug-5069-op-enabled.dot │ │ ├── bug-5140-require-all-false.dot │ │ ├── bug-5143-ms-shuffle.dot │ │ ├── bug-5186-partial-migrate.dot │ │ ├── bug-cl-5168.dot │ │ ├── bug-cl-5170.dot │ │ ├── bug-cl-5212.dot │ │ ├── bug-cl-5213.dot │ │ ├── bug-cl-5219.dot │ │ ├── bug-cl-5247.dot │ │ ├── bug-lf-1852.dot │ │ ├── bug-lf-1920.dot │ │ ├── bug-lf-2106.dot │ │ ├── bug-lf-2153.dot │ │ ├── bug-lf-2160.dot │ │ ├── bug-lf-2171.dot │ │ ├── bug-lf-2213.dot │ │ ├── bug-lf-2317.dot │ │ ├── bug-lf-2358.dot │ │ ├── bug-lf-2361.dot │ │ ├── bug-lf-2422.dot │ │ ├── bug-lf-2435.dot │ │ ├── bug-lf-2445.dot │ │ ├── bug-lf-2453.dot │ │ ├── bug-lf-2474.dot │ │ ├── bug-lf-2493.dot │ │ ├── bug-lf-2508.dot │ │ ├── bug-lf-2544.dot │ │ ├── bug-lf-2551.dot │ │ ├── bug-lf-2574.dot │ │ ├── bug-lf-2581.dot │ │ ├── bug-lf-2606.dot │ │ ├── bug-lf-2619.dot │ │ ├── bug-n-385265-2.dot │ │ ├── bug-n-385265.dot │ │ ├── bug-n-387749.dot │ │ ├── bug-pm-11.dot │ │ ├── bug-pm-12.dot │ │ ├── bug-rh-1097457.dot │ │ ├── bug-rh-880249.dot │ │ ├── bug-suse-707150.dot │ │ ├── bundle-connection-with-container.dot │ │ ├── bundle-interleave-down.dot │ │ ├── bundle-interleave-promote.dot │ │ ├── bundle-interleave-start.dot │ │ ├── bundle-nested-colocation.dot │ │ ├── bundle-order-fencing.dot │ │ ├── bundle-order-partial-start-2.dot │ │ ├── bundle-order-partial-start.dot │ │ ├── bundle-order-partial-stop.dot │ │ ├── bundle-order-partial.dot │ │ ├── bundle-order-startup-clone-2.dot │ │ ├── bundle-order-startup-clone.dot │ │ ├── bundle-order-startup.dot │ │ ├── bundle-order-stop-clone.dot │ │ ├── bundle-order-stop-on-remote.dot │ │ ├── bundle-order-stop.dot │ │ ├── bundle-probe-order-1.dot │ │ ├── bundle-probe-order-2.dot │ │ ├── bundle-probe-order-3.dot │ │ ├── bundle-probe-remotes.dot │ │ ├── bundle-promoted-anticolocation-1.dot │ │ ├── bundle-promoted-anticolocation-2.dot │ │ ├── bundle-promoted-anticolocation-3.dot │ │ ├── bundle-promoted-anticolocation-4.dot │ │ ├── bundle-promoted-anticolocation-5.dot │ │ ├── bundle-promoted-anticolocation-6.dot │ │ ├── bundle-promoted-colocation-1.dot │ │ ├── bundle-promoted-colocation-2.dot │ │ ├── bundle-promoted-colocation-3.dot │ │ ├── bundle-promoted-colocation-4.dot │ │ ├── bundle-promoted-colocation-5.dot │ │ ├── bundle-promoted-colocation-6.dot │ │ ├── bundle-promoted-location-1.dot │ │ ├── bundle-promoted-location-2.dot │ │ ├── bundle-promoted-location-3.dot │ │ ├── bundle-promoted-location-4.dot │ │ ├── bundle-promoted-location-5.dot │ │ ├── bundle-promoted-location-6.dot │ │ ├── bundle-replicas-change.dot │ │ ├── cancel-behind-moving-remote.dot │ │ ├── clbz5007-promotable-colocation.dot │ │ ├── clone-anon-dup.dot │ │ ├── clone-anon-failcount.dot │ │ ├── clone-anon-probe-1.dot │ │ ├── clone-anon-probe-2.dot │ │ ├── clone-fail-block-colocation.dot │ │ ├── clone-interleave-1.dot │ │ ├── clone-interleave-2.dot │ │ ├── clone-interleave-3.dot │ │ ├── clone-max-zero.dot │ │ ├── clone-no-shuffle.dot │ │ ├── clone-order-16instances.dot │ │ ├── clone-order-primitive.dot │ │ ├── clone-recover-no-shuffle-1.dot │ │ ├── clone-recover-no-shuffle-10.dot │ │ ├── clone-recover-no-shuffle-11.dot │ │ ├── clone-recover-no-shuffle-12.dot │ │ ├── clone-recover-no-shuffle-2.dot │ │ ├── clone-recover-no-shuffle-3.dot │ │ ├── clone-recover-no-shuffle-4.dot │ │ ├── clone-recover-no-shuffle-5.dot │ │ ├── clone-recover-no-shuffle-6.dot │ │ ├── clone-recover-no-shuffle-7.dot │ │ ├── clone-recover-no-shuffle-8.dot │ │ ├── clone-recover-no-shuffle-9.dot │ │ ├── clone-require-all-1.dot │ │ ├── clone-require-all-2.dot │ │ ├── clone-require-all-3.dot │ │ ├── clone-require-all-4.dot │ │ ├── clone-require-all-5.dot │ │ ├── clone-require-all-6.dot │ │ ├── clone-require-all-7.dot │ │ ├── clone-require-all-no-interleave-1.dot │ │ ├── clone-require-all-no-interleave-2.dot │ │ ├── clone-require-all-no-interleave-3.dot │ │ ├── clone-requires-quorum-recovery.dot │ │ ├── clone-requires-quorum.dot │ │ ├── clone_min_interleave_start_one.dot │ │ ├── clone_min_interleave_start_two.dot │ │ ├── clone_min_interleave_stop_one.dot │ │ ├── clone_min_interleave_stop_two.dot │ │ ├── clone_min_start_one.dot │ │ ├── clone_min_start_two.dot │ │ ├── clone_min_stop_all.dot │ │ ├── clone_min_stop_one.dot │ │ ├── clone_min_stop_two.dot │ │ ├── cloned-group-stop.dot │ │ ├── cloned-group.dot │ │ ├── cloned_start_one.dot │ │ ├── cloned_start_two.dot │ │ ├── cloned_stop_one.dot │ │ ├── cloned_stop_two.dot │ │ ├── cluster-specific-params.dot │ │ ├── colo_promoted_w_native.dot │ │ ├── colo_unpromoted_w_native.dot │ │ ├── coloc-attr.dot │ │ ├── coloc-clone-stays-active.dot │ │ ├── coloc-cloned-group-promoted-dependent1.dot │ │ ├── coloc-cloned-group-promoted-dependent2.dot │ │ ├── coloc-dependee-should-move.dot │ │ ├── coloc-dependee-should-stay.dot │ │ ├── coloc-group.dot │ │ ├── coloc-intra-set.dot │ │ ├── coloc-list.dot │ │ ├── coloc-loop.dot │ │ ├── coloc-many-one.dot │ │ ├── coloc-negative-group.dot │ │ ├── coloc-optional-promoted-dependent-moves-1.dot │ │ ├── coloc-optional-promoted-dependent-moves-2.dot │ │ ├── coloc-optional-promoted-dependent-stays-1.dot │ │ ├── coloc-optional-promoted-dependent-stays-2.dot │ │ ├── coloc-unpromoted-anti.dot │ │ ├── coloc-with-inner-group-member.dot │ │ ├── coloc_fp_logic.dot │ │ ├── colocate-primitive-with-clone.dot │ │ ├── colocate-unmanaged-group.dot │ │ ├── colocated-utilization-clone.dot │ │ ├── colocated-utilization-group.dot │ │ ├── colocated-utilization-primitive-1.dot │ │ ├── colocated-utilization-primitive-2.dot │ │ ├── colocation-influence.dot │ │ ├── colocation-priority-group.dot │ │ ├── colocation-vs-stickiness.dot │ │ ├── colocation_constraint_stops_promoted.dot │ │ ├── colocation_constraint_stops_unpromoted.dot │ │ ├── comments.dot │ │ ├── complex_enforce_colo.dot │ │ ├── concurrent-fencing.dot │ │ ├── container-1.dot │ │ ├── container-2.dot │ │ ├── container-3.dot │ │ ├── container-4.dot │ │ ├── container-group-1.dot │ │ ├── container-group-2.dot │ │ ├── container-group-3.dot │ │ ├── container-group-4.dot │ │ ├── container-is-remote-node.dot │ │ ├── date-1.dot │ │ ├── date-2.dot │ │ ├── date-3.dot │ │ ├── dc-fence-ordering.dot │ │ ├── enforce-colo1.dot │ │ ├── expire-non-blocked-failure.dot │ │ ├── expired-failed-probe-primitive.dot │ │ ├── expired-stop-1.dot │ │ ├── failcount-block.dot │ │ ├── failcount.dot │ │ ├── failed-demote-recovery-promoted.dot │ │ ├── failed-demote-recovery.dot │ │ ├── failed-probe-clone.dot │ │ ├── failed-probe-primitive.dot │ │ ├── failed-sticky-anticolocated-group.dot │ │ ├── failed-sticky-group.dot │ │ ├── force-anon-clone-max.dot │ │ ├── group-anticolocation-2.dot │ │ ├── group-anticolocation-3.dot │ │ ├── group-anticolocation-4.dot │ │ ├── group-anticolocation-5.dot │ │ ├── group-anticolocation.dot │ │ ├── group-colocation-failure.dot │ │ ├── group-dependents.dot │ │ ├── group-fail.dot │ │ ├── group-stop-ordering.dot │ │ ├── group-unmanaged-stopped.dot │ │ ├── group-unmanaged.dot │ │ ├── group1.dot │ │ ├── group10.dot │ │ ├── group11.dot │ │ ├── group13.dot │ │ ├── group14.dot │ │ ├── group15.dot │ │ ├── group2.dot │ │ ├── group3.dot │ │ ├── group4.dot │ │ ├── group5.dot │ │ ├── group6.dot │ │ ├── group7.dot │ │ ├── group8.dot │ │ ├── group9.dot │ │ ├── guest-host-not-fenceable.dot │ │ ├── guest-node-cleanup.dot │ │ ├── guest-node-host-dies.dot │ │ ├── history-1.dot │ │ ├── honor_stonith_rsc_order1.dot │ │ ├── honor_stonith_rsc_order2.dot │ │ ├── honor_stonith_rsc_order3.dot │ │ ├── honor_stonith_rsc_order4.dot │ │ ├── ignore_stonith_rsc_order1.dot │ │ ├── ignore_stonith_rsc_order2.dot │ │ ├── ignore_stonith_rsc_order3.dot │ │ ├── ignore_stonith_rsc_order4.dot │ │ ├── inc0.dot │ │ ├── inc1.dot │ │ ├── inc10.dot │ │ ├── inc11.dot │ │ ├── inc12.dot │ │ ├── inc2.dot │ │ ├── inc3.dot │ │ ├── inc4.dot │ │ ├── inc5.dot │ │ ├── inc6.dot │ │ ├── inc7.dot │ │ ├── inc8.dot │ │ ├── inc9.dot │ │ ├── interleave-0.dot │ │ ├── interleave-1.dot │ │ ├── interleave-2.dot │ │ ├── interleave-3.dot │ │ ├── interleave-pseudo-stop.dot │ │ ├── interleave-restart.dot │ │ ├── interleave-stop.dot │ │ ├── intervals.dot │ │ ├── leftover-pending-monitor.dot │ │ ├── load-stopped-loop-2.dot │ │ ├── load-stopped-loop.dot │ │ ├── location-date-rules-1.dot │ │ ├── location-date-rules-2.dot │ │ ├── location-sets-templates.dot │ │ ├── managed-0.dot │ │ ├── managed-1.dot │ │ ├── managed-2.dot │ │ ├── migrate-1.dot │ │ ├── migrate-2.dot │ │ ├── migrate-3.dot │ │ ├── migrate-4.dot │ │ ├── migrate-5.dot │ │ ├── migrate-begin.dot │ │ ├── migrate-both-vms.dot │ │ ├── migrate-fail-2.dot │ │ ├── migrate-fail-3.dot │ │ ├── migrate-fail-4.dot │ │ ├── migrate-fail-5.dot │ │ ├── migrate-fail-6.dot │ │ ├── migrate-fail-7.dot │ │ ├── migrate-fail-8.dot │ │ ├── migrate-fail-9.dot │ │ ├── migrate-fencing.dot │ │ ├── migrate-partial-1.dot │ │ ├── migrate-partial-2.dot │ │ ├── migrate-partial-3.dot │ │ ├── migrate-partial-4.dot │ │ ├── migrate-shutdown.dot │ │ ├── migrate-start-complex.dot │ │ ├── migrate-start.dot │ │ ├── migrate-stop-complex.dot │ │ ├── migrate-stop-start-complex.dot │ │ ├── migrate-stop.dot │ │ ├── migrate-stop_start.dot │ │ ├── migrate-success.dot │ │ ├── migration-behind-migrating-remote.dot │ │ ├── migration-intermediary-cleaned.dot │ │ ├── migration-ping-pong.dot │ │ ├── minimal.dot │ │ ├── mon-rsc-1.dot │ │ ├── mon-rsc-2.dot │ │ ├── mon-rsc-3.dot │ │ ├── mon-rsc-4.dot │ │ ├── monitor-onfail-restart.dot │ │ ├── monitor-onfail-stop.dot │ │ ├── monitor-recovery.dot │ │ ├── multi1.dot │ │ ├── multiple-active-block-group.dot │ │ ├── multiple-monitor-one-failed.dot │ │ ├── multiply-active-stonith.dot │ │ ├── nested-remote-recovery.dot │ │ ├── no-promote-on-unrunnable-guest.dot │ │ ├── no_quorum_demote.dot │ │ ├── node-maintenance-1.dot │ │ ├── node-maintenance-2.dot │ │ ├── node-pending-timeout.dot │ │ ├── not-installed-agent.dot │ │ ├── not-installed-tools.dot │ │ ├── not-reschedule-unneeded-monitor.dot │ │ ├── notifs-for-unrunnable.dot │ │ ├── notify-0.dot │ │ ├── notify-1.dot │ │ ├── notify-2.dot │ │ ├── notify-3.dot │ │ ├── notify-behind-stopping-remote.dot │ │ ├── novell-239079.dot │ │ ├── novell-239082.dot │ │ ├── novell-239087.dot │ │ ├── novell-251689.dot │ │ ├── novell-252693-2.dot │ │ ├── novell-252693-3.dot │ │ ├── novell-252693.dot │ │ ├── nvpair-date-rules-1.dot │ │ ├── nvpair-id-ref.dot │ │ ├── obsolete-lrm-resource.dot │ │ ├── ocf_degraded-remap-ocf_ok.dot │ │ ├── ocf_degraded_promoted-remap-ocf_ok.dot │ │ ├── on-fail-ignore.dot │ │ ├── on_fail_demote1.dot │ │ ├── on_fail_demote2.dot │ │ ├── on_fail_demote3.dot │ │ ├── on_fail_demote4.dot │ │ ├── one-or-more-0.dot │ │ ├── one-or-more-1.dot │ │ ├── one-or-more-2.dot │ │ ├── one-or-more-3.dot │ │ ├── one-or-more-4.dot │ │ ├── one-or-more-5.dot │ │ ├── one-or-more-6.dot │ │ ├── one-or-more-7.dot │ │ ├── one-or-more-unrunnable-instances.dot │ │ ├── op-defaults-2.dot │ │ ├── op-defaults-3.dot │ │ ├── op-defaults.dot │ │ ├── order-clone.dot │ │ ├── order-expired-failure.dot │ │ ├── order-first-probes.dot │ │ ├── order-mandatory.dot │ │ ├── order-optional-keyword.dot │ │ ├── order-optional.dot │ │ ├── order-required.dot │ │ ├── order-serialize-set.dot │ │ ├── order-serialize.dot │ │ ├── order-sets.dot │ │ ├── order-wrong-kind.dot │ │ ├── order1.dot │ │ ├── order2.dot │ │ ├── order3.dot │ │ ├── order4.dot │ │ ├── order5.dot │ │ ├── order6.dot │ │ ├── order7.dot │ │ ├── order_constraint_stops_promoted.dot │ │ ├── order_constraint_stops_unpromoted.dot │ │ ├── ordered-set-basic-startup.dot │ │ ├── ordered-set-natural.dot │ │ ├── origin.dot │ │ ├── orphan-0.dot │ │ ├── orphan-1.dot │ │ ├── orphan-2.dot │ │ ├── params-0.dot │ │ ├── params-1.dot │ │ ├── params-2.dot │ │ ├── params-3.dot │ │ ├── params-4.dot │ │ ├── params-5.dot │ │ ├── params-6.dot │ │ ├── partial-live-migration-multiple-active.dot │ │ ├── partial-unmanaged-group.dot │ │ ├── pending-node-no-uname.dot │ │ ├── per-node-attrs.dot │ │ ├── per-op-failcount.dot │ │ ├── placement-capacity.dot │ │ ├── placement-location.dot │ │ ├── placement-priority.dot │ │ ├── placement-stickiness.dot │ │ ├── primitive-with-group-with-clone.dot │ │ ├── primitive-with-group-with-promoted.dot │ │ ├── primitive-with-unrunnable-group.dot │ │ ├── priority-fencing-delay.dot │ │ ├── probe-0.dot │ │ ├── probe-1.dot │ │ ├── probe-2.dot │ │ ├── probe-3.dot │ │ ├── probe-4.dot │ │ ├── probe-pending-node.dot │ │ ├── probe-target-of-failed-migrate_to-1.dot │ │ ├── probe-target-of-failed-migrate_to-2.dot │ │ ├── probe-timeout.dot │ │ ├── promotable-colocation-with-node-attribute.dot │ │ ├── promoted-0.dot │ │ ├── promoted-1.dot │ │ ├── promoted-10.dot │ │ ├── promoted-11.dot │ │ ├── promoted-12.dot │ │ ├── promoted-13.dot │ │ ├── promoted-2.dot │ │ ├── promoted-3.dot │ │ ├── promoted-4.dot │ │ ├── promoted-5.dot │ │ ├── promoted-6.dot │ │ ├── promoted-7.dot │ │ ├── promoted-8.dot │ │ ├── promoted-9.dot │ │ ├── promoted-allow-start.dot │ │ ├── promoted-asymmetrical-order.dot │ │ ├── promoted-colocation.dot │ │ ├── promoted-demote-2.dot │ │ ├── promoted-demote-block.dot │ │ ├── promoted-demote.dot │ │ ├── promoted-depend.dot │ │ ├── promoted-dependent-ban.dot │ │ ├── promoted-failed-demote-2.dot │ │ ├── promoted-failed-demote.dot │ │ ├── promoted-group.dot │ │ ├── promoted-move.dot │ │ ├── promoted-notify.dot │ │ ├── promoted-ordering.dot │ │ ├── promoted-partially-demoted-group.dot │ │ ├── promoted-probed-score.dot │ │ ├── promoted-promotion-constraint.dot │ │ ├── promoted-pseudo.dot │ │ ├── promoted-reattach.dot │ │ ├── promoted-role.dot │ │ ├── promoted-score-startup.dot │ │ ├── promoted-stop.dot │ │ ├── promoted-unmanaged-monitor.dot │ │ ├── promoted-with-blocked.dot │ │ ├── promoted_monitor_restart.dot │ │ ├── quorum-1.dot │ │ ├── quorum-2.dot │ │ ├── quorum-3.dot │ │ ├── quorum-4.dot │ │ ├── quorum-5.dot │ │ ├── quorum-6.dot │ │ ├── rebalance-unique-clones.dot │ │ ├── rec-node-1.dot │ │ ├── rec-node-10.dot │ │ ├── rec-node-11.dot │ │ ├── rec-node-12.dot │ │ ├── rec-node-13.dot │ │ ├── rec-node-14.dot │ │ ├── rec-node-15.dot │ │ ├── rec-node-2.dot │ │ ├── rec-node-3.dot │ │ ├── rec-node-4.dot │ │ ├── rec-node-5.dot │ │ ├── rec-node-6.dot │ │ ├── rec-node-7.dot │ │ ├── rec-node-8.dot │ │ ├── rec-node-9.dot │ │ ├── rec-rsc-0.dot │ │ ├── rec-rsc-1.dot │ │ ├── rec-rsc-2.dot │ │ ├── rec-rsc-3.dot │ │ ├── rec-rsc-4.dot │ │ ├── rec-rsc-5.dot │ │ ├── rec-rsc-6.dot │ │ ├── rec-rsc-7.dot │ │ ├── rec-rsc-8.dot │ │ ├── rec-rsc-9.dot │ │ ├── reload-becomes-restart.dot │ │ ├── remote-connection-shutdown.dot │ │ ├── remote-connection-unrecoverable.dot │ │ ├── remote-disable.dot │ │ ├── remote-fence-before-reconnect.dot │ │ ├── remote-fence-unclean-3.dot │ │ ├── remote-fence-unclean.dot │ │ ├── remote-fence-unclean2.dot │ │ ├── remote-move.dot │ │ ├── remote-orphaned.dot │ │ ├── remote-orphaned2.dot │ │ ├── remote-partial-migrate.dot │ │ ├── remote-partial-migrate2.dot │ │ ├── remote-probe-disable.dot │ │ ├── remote-reconnect-delay.dot │ │ ├── remote-recover-all.dot │ │ ├── remote-recover-connection.dot │ │ ├── remote-recover-fail.dot │ │ ├── remote-recover-no-resources.dot │ │ ├── remote-recover-unknown.dot │ │ ├── remote-recover.dot │ │ ├── remote-recovery.dot │ │ ├── remote-stale-node-entry.dot │ │ ├── remote-start-fail.dot │ │ ├── remote-startup-probes.dot │ │ ├── remote-startup.dot │ │ ├── remote-unclean2.dot │ │ ├── resource-discovery.dot │ │ ├── restart-with-extra-op-params.dot │ │ ├── route-remote-notify.dot │ │ ├── rsc-defaults-2.dot │ │ ├── rsc-defaults.dot │ │ ├── rsc-discovery-per-node.dot │ │ ├── rsc-maintenance.dot │ │ ├── rsc-sets-clone-1.dot │ │ ├── rsc-sets-clone.dot │ │ ├── rsc-sets-promoted.dot │ │ ├── rsc-sets-seq-false.dot │ │ ├── rsc-sets-seq-true.dot │ │ ├── rsc_dep1.dot │ │ ├── rsc_dep10.dot │ │ ├── rsc_dep2.dot │ │ ├── rsc_dep3.dot │ │ ├── rsc_dep4.dot │ │ ├── rsc_dep5.dot │ │ ├── rsc_dep7.dot │ │ ├── rsc_dep8.dot │ │ ├── rule-dbl-as-auto-number-match.dot │ │ ├── rule-dbl-as-auto-number-no-match.dot │ │ ├── rule-dbl-as-integer-match.dot │ │ ├── rule-dbl-as-integer-no-match.dot │ │ ├── rule-dbl-as-number-match.dot │ │ ├── rule-dbl-as-number-no-match.dot │ │ ├── rule-dbl-parse-fail-default-str-match.dot │ │ ├── rule-dbl-parse-fail-default-str-no-match.dot │ │ ├── rule-int-as-auto-integer-match.dot │ │ ├── rule-int-as-auto-integer-no-match.dot │ │ ├── rule-int-as-integer-match.dot │ │ ├── rule-int-as-integer-no-match.dot │ │ ├── rule-int-as-number-match.dot │ │ ├── rule-int-as-number-no-match.dot │ │ ├── rule-int-parse-fail-default-str-match.dot │ │ ├── rule-int-parse-fail-default-str-no-match.dot │ │ ├── shutdown-lock-expiration.dot │ │ ├── shutdown-lock.dot │ │ ├── shutdown-maintenance-node.dot │ │ ├── simple1.dot │ │ ├── simple11.dot │ │ ├── simple12.dot │ │ ├── simple2.dot │ │ ├── simple3.dot │ │ ├── simple4.dot │ │ ├── simple6.dot │ │ ├── simple7.dot │ │ ├── simple8.dot │ │ ├── site-specific-params.dot │ │ ├── standby.dot │ │ ├── start-then-stop-with-unfence.dot │ │ ├── stonith-0.dot │ │ ├── stonith-1.dot │ │ ├── stonith-2.dot │ │ ├── stonith-3.dot │ │ ├── stonith-4.dot │ │ ├── stop-all-resources.dot │ │ ├── stop-failure-no-fencing.dot │ │ ├── stop-failure-no-quorum.dot │ │ ├── stop-failure-with-fencing.dot │ │ ├── stop-unexpected-2.dot │ │ ├── stop-unexpected.dot │ │ ├── stopped-monitor-00.dot │ │ ├── stopped-monitor-01.dot │ │ ├── stopped-monitor-02.dot │ │ ├── stopped-monitor-03.dot │ │ ├── stopped-monitor-04.dot │ │ ├── stopped-monitor-05.dot │ │ ├── stopped-monitor-06.dot │ │ ├── stopped-monitor-07.dot │ │ ├── stopped-monitor-08.dot │ │ ├── stopped-monitor-09.dot │ │ ├── stopped-monitor-10.dot │ │ ├── stopped-monitor-11.dot │ │ ├── stopped-monitor-12.dot │ │ ├── stopped-monitor-20.dot │ │ ├── stopped-monitor-21.dot │ │ ├── stopped-monitor-22.dot │ │ ├── stopped-monitor-23.dot │ │ ├── stopped-monitor-24.dot │ │ ├── stopped-monitor-25.dot │ │ ├── stopped-monitor-26.dot │ │ ├── stopped-monitor-27.dot │ │ ├── stopped-monitor-30.dot │ │ ├── stopped-monitor-31.dot │ │ ├── suicide-needed-inquorate.dot │ │ ├── suicide-not-needed-initial-quorum.dot │ │ ├── suicide-not-needed-never-quorate.dot │ │ ├── suicide-not-needed-quorate.dot │ │ ├── systemhealth1.dot │ │ ├── systemhealth2.dot │ │ ├── systemhealth3.dot │ │ ├── systemhealthm1.dot │ │ ├── systemhealthm2.dot │ │ ├── systemhealthm3.dot │ │ ├── systemhealthn1.dot │ │ ├── systemhealthn2.dot │ │ ├── systemhealthn3.dot │ │ ├── systemhealtho1.dot │ │ ├── systemhealtho2.dot │ │ ├── systemhealtho3.dot │ │ ├── systemhealthp1.dot │ │ ├── systemhealthp2.dot │ │ ├── systemhealthp3.dot │ │ ├── tags-coloc-order-1.dot │ │ ├── tags-coloc-order-2.dot │ │ ├── tags-location.dot │ │ ├── tags-ticket.dot │ │ ├── target-0.dot │ │ ├── target-1.dot │ │ ├── target-2.dot │ │ ├── template-1.dot │ │ ├── template-2.dot │ │ ├── template-3.dot │ │ ├── template-clone-group.dot │ │ ├── template-clone-primitive.dot │ │ ├── template-coloc-1.dot │ │ ├── template-coloc-2.dot │ │ ├── template-coloc-3.dot │ │ ├── template-order-1.dot │ │ ├── template-order-2.dot │ │ ├── template-order-3.dot │ │ ├── template-rsc-sets-1.dot │ │ ├── template-rsc-sets-2.dot │ │ ├── template-rsc-sets-3.dot │ │ ├── template-rsc-sets-4.dot │ │ ├── template-ticket.dot │ │ ├── ticket-clone-1.dot │ │ ├── ticket-clone-10.dot │ │ ├── ticket-clone-11.dot │ │ ├── ticket-clone-12.dot │ │ ├── ticket-clone-13.dot │ │ ├── ticket-clone-14.dot │ │ ├── ticket-clone-15.dot │ │ ├── ticket-clone-16.dot │ │ ├── ticket-clone-17.dot │ │ ├── ticket-clone-18.dot │ │ ├── ticket-clone-19.dot │ │ ├── ticket-clone-2.dot │ │ ├── ticket-clone-20.dot │ │ ├── ticket-clone-21.dot │ │ ├── ticket-clone-22.dot │ │ ├── ticket-clone-23.dot │ │ ├── ticket-clone-24.dot │ │ ├── ticket-clone-3.dot │ │ ├── ticket-clone-4.dot │ │ ├── ticket-clone-5.dot │ │ ├── ticket-clone-6.dot │ │ ├── ticket-clone-7.dot │ │ ├── ticket-clone-8.dot │ │ ├── ticket-clone-9.dot │ │ ├── ticket-group-1.dot │ │ ├── ticket-group-10.dot │ │ ├── ticket-group-11.dot │ │ ├── ticket-group-12.dot │ │ ├── ticket-group-13.dot │ │ ├── ticket-group-14.dot │ │ ├── ticket-group-15.dot │ │ ├── ticket-group-16.dot │ │ ├── ticket-group-17.dot │ │ ├── ticket-group-18.dot │ │ ├── ticket-group-19.dot │ │ ├── ticket-group-2.dot │ │ ├── ticket-group-20.dot │ │ ├── ticket-group-21.dot │ │ ├── ticket-group-22.dot │ │ ├── ticket-group-23.dot │ │ ├── ticket-group-24.dot │ │ ├── ticket-group-3.dot │ │ ├── ticket-group-4.dot │ │ ├── ticket-group-5.dot │ │ ├── ticket-group-6.dot │ │ ├── ticket-group-7.dot │ │ ├── ticket-group-8.dot │ │ ├── ticket-group-9.dot │ │ ├── ticket-primitive-1.dot │ │ ├── ticket-primitive-10.dot │ │ ├── ticket-primitive-11.dot │ │ ├── ticket-primitive-12.dot │ │ ├── ticket-primitive-13.dot │ │ ├── ticket-primitive-14.dot │ │ ├── ticket-primitive-15.dot │ │ ├── ticket-primitive-16.dot │ │ ├── ticket-primitive-17.dot │ │ ├── ticket-primitive-18.dot │ │ ├── ticket-primitive-19.dot │ │ ├── ticket-primitive-2.dot │ │ ├── ticket-primitive-20.dot │ │ ├── ticket-primitive-21.dot │ │ ├── ticket-primitive-22.dot │ │ ├── ticket-primitive-23.dot │ │ ├── ticket-primitive-24.dot │ │ ├── ticket-primitive-3.dot │ │ ├── ticket-primitive-4.dot │ │ ├── ticket-primitive-5.dot │ │ ├── ticket-primitive-6.dot │ │ ├── ticket-primitive-7.dot │ │ ├── ticket-primitive-8.dot │ │ ├── ticket-primitive-9.dot │ │ ├── ticket-promoted-1.dot │ │ ├── ticket-promoted-10.dot │ │ ├── ticket-promoted-11.dot │ │ ├── ticket-promoted-12.dot │ │ ├── ticket-promoted-13.dot │ │ ├── ticket-promoted-14.dot │ │ ├── ticket-promoted-15.dot │ │ ├── ticket-promoted-16.dot │ │ ├── ticket-promoted-17.dot │ │ ├── ticket-promoted-18.dot │ │ ├── ticket-promoted-19.dot │ │ ├── ticket-promoted-2.dot │ │ ├── ticket-promoted-20.dot │ │ ├── ticket-promoted-21.dot │ │ ├── ticket-promoted-22.dot │ │ ├── ticket-promoted-23.dot │ │ ├── ticket-promoted-24.dot │ │ ├── ticket-promoted-3.dot │ │ ├── ticket-promoted-4.dot │ │ ├── ticket-promoted-5.dot │ │ ├── ticket-promoted-6.dot │ │ ├── ticket-promoted-7.dot │ │ ├── ticket-promoted-8.dot │ │ ├── ticket-promoted-9.dot │ │ ├── ticket-rsc-sets-1.dot │ │ ├── ticket-rsc-sets-10.dot │ │ ├── ticket-rsc-sets-11.dot │ │ ├── ticket-rsc-sets-12.dot │ │ ├── ticket-rsc-sets-13.dot │ │ ├── ticket-rsc-sets-14.dot │ │ ├── ticket-rsc-sets-2.dot │ │ ├── ticket-rsc-sets-3.dot │ │ ├── ticket-rsc-sets-4.dot │ │ ├── ticket-rsc-sets-5.dot │ │ ├── ticket-rsc-sets-6.dot │ │ ├── ticket-rsc-sets-7.dot │ │ ├── ticket-rsc-sets-8.dot │ │ ├── ticket-rsc-sets-9.dot │ │ ├── unfence-definition.dot │ │ ├── unfence-device.dot │ │ ├── unfence-parameters.dot │ │ ├── unfence-startup.dot │ │ ├── unmanaged-block-restart.dot │ │ ├── unmanaged-promoted.dot │ │ ├── unmanaged-stop-1.dot │ │ ├── unmanaged-stop-2.dot │ │ ├── unmanaged-stop-3.dot │ │ ├── unmanaged-stop-4.dot │ │ ├── unrunnable-1.dot │ │ ├── unrunnable-2.dot │ │ ├── use-after-free-merge.dot │ │ ├── utilization-check-allowed-nodes.dot │ │ ├── utilization-complex.dot │ │ ├── utilization-order1.dot │ │ ├── utilization-order2.dot │ │ ├── utilization-order3.dot │ │ ├── utilization-order4.dot │ │ ├── utilization-shuffle.dot │ │ ├── utilization.dot │ │ ├── value-source.dot │ │ ├── whitebox-asymmetric.dot │ │ ├── whitebox-fail1.dot │ │ ├── whitebox-fail2.dot │ │ ├── whitebox-fail3.dot │ │ ├── whitebox-imply-stop-on-fence.dot │ │ ├── whitebox-migrate1.dot │ │ ├── whitebox-move.dot │ │ ├── whitebox-ms-ordering-move.dot │ │ ├── whitebox-ms-ordering.dot │ │ ├── whitebox-nested-group.dot │ │ ├── whitebox-orphan-ms.dot │ │ ├── whitebox-orphaned.dot │ │ ├── whitebox-start.dot │ │ ├── whitebox-stop.dot │ │ ├── whitebox-unexpectedly-running.dot │ │ └── year-2038.dot │ ├── exp │ │ ├── 1-a-then-bm-move-b.exp │ │ ├── 10-a-then-bm-b-move-a-clone.exp │ │ ├── 11-a-then-bm-b-move-a-clone-starting.exp │ │ ├── 1360.exp │ │ ├── 1484.exp │ │ ├── 1494.exp │ │ ├── 2-am-then-b-move-a.exp │ │ ├── 3-am-then-bm-both-migrate.exp │ │ ├── 4-am-then-bm-b-not-migratable.exp │ │ ├── 5-am-then-bm-a-not-migratable.exp │ │ ├── 594.exp │ │ ├── 6-migrate-group.exp │ │ ├── 662.exp │ │ ├── 696.exp │ │ ├── 7-migrate-group-one-unmigratable.exp │ │ ├── 726.exp │ │ ├── 735.exp │ │ ├── 764.exp │ │ ├── 797.exp │ │ ├── 8-am-then-bm-a-migrating-b-stopping.exp │ │ ├── 829.exp │ │ ├── 9-am-then-bm-b-migrating-a-stopping.exp │ │ ├── 994-2.exp │ │ ├── 994.exp │ │ ├── Makefile.am │ │ ├── a-demote-then-b-migrate.exp │ │ ├── a-promote-then-b-migrate.exp │ │ ├── allow-unhealthy-nodes.exp │ │ ├── anon-instance-pending.exp │ │ ├── anti-colocation-order.exp │ │ ├── anti-colocation-promoted.exp │ │ ├── anti-colocation-unpromoted.exp │ │ ├── asymmetric.exp │ │ ├── asymmetrical-order-move.exp │ │ ├── asymmetrical-order-restart.exp │ │ ├── attrs1.exp │ │ ├── attrs2.exp │ │ ├── attrs3.exp │ │ ├── attrs4.exp │ │ ├── attrs5.exp │ │ ├── attrs6.exp │ │ ├── attrs7.exp │ │ ├── attrs8.exp │ │ ├── balanced.exp │ │ ├── banned-group-inner-constraints.exp │ │ ├── base-score.exp │ │ ├── bnc-515172.exp │ │ ├── bug-1572-1.exp │ │ ├── bug-1572-2.exp │ │ ├── bug-1573.exp │ │ ├── bug-1685.exp │ │ ├── bug-1718.exp │ │ ├── bug-1765.exp │ │ ├── bug-1820-1.exp │ │ ├── bug-1820.exp │ │ ├── bug-1822.exp │ │ ├── bug-5014-A-start-B-start.exp │ │ ├── bug-5014-A-stop-B-started.exp │ │ ├── bug-5014-A-stopped-B-stopped.exp │ │ ├── bug-5014-CLONE-A-start-B-start.exp │ │ ├── bug-5014-CLONE-A-stop-B-started.exp │ │ ├── bug-5014-CthenAthenB-C-stopped.exp │ │ ├── bug-5014-GROUP-A-start-B-start.exp │ │ ├── bug-5014-GROUP-A-stopped-B-started.exp │ │ ├── bug-5014-GROUP-A-stopped-B-stopped.exp │ │ ├── bug-5014-ordered-set-symmetrical-false.exp │ │ ├── bug-5014-ordered-set-symmetrical-true.exp │ │ ├── bug-5025-1.exp │ │ ├── bug-5025-2.exp │ │ ├── bug-5025-3.exp │ │ ├── bug-5025-4.exp │ │ ├── bug-5028-bottom.exp │ │ ├── bug-5028-detach.exp │ │ ├── bug-5028.exp │ │ ├── bug-5038.exp │ │ ├── bug-5059.exp │ │ ├── bug-5069-op-disabled.exp │ │ ├── bug-5069-op-enabled.exp │ │ ├── bug-5140-require-all-false.exp │ │ ├── bug-5143-ms-shuffle.exp │ │ ├── bug-5186-partial-migrate.exp │ │ ├── bug-cl-5168.exp │ │ ├── bug-cl-5170.exp │ │ ├── bug-cl-5212.exp │ │ ├── bug-cl-5213.exp │ │ ├── bug-cl-5219.exp │ │ ├── bug-cl-5247.exp │ │ ├── bug-lf-1852.exp │ │ ├── bug-lf-1920.exp │ │ ├── bug-lf-2106.exp │ │ ├── bug-lf-2153.exp │ │ ├── bug-lf-2160.exp │ │ ├── bug-lf-2171.exp │ │ ├── bug-lf-2213.exp │ │ ├── bug-lf-2317.exp │ │ ├── bug-lf-2358.exp │ │ ├── bug-lf-2361.exp │ │ ├── bug-lf-2422.exp │ │ ├── bug-lf-2435.exp │ │ ├── bug-lf-2445.exp │ │ ├── bug-lf-2453.exp │ │ ├── bug-lf-2474.exp │ │ ├── bug-lf-2493.exp │ │ ├── bug-lf-2508.exp │ │ ├── bug-lf-2544.exp │ │ ├── bug-lf-2551.exp │ │ ├── bug-lf-2574.exp │ │ ├── bug-lf-2581.exp │ │ ├── bug-lf-2606.exp │ │ ├── bug-lf-2619.exp │ │ ├── bug-n-385265-2.exp │ │ ├── bug-n-385265.exp │ │ ├── bug-n-387749.exp │ │ ├── bug-pm-11.exp │ │ ├── bug-pm-12.exp │ │ ├── bug-rh-1097457.exp │ │ ├── bug-rh-880249.exp │ │ ├── bug-suse-707150.exp │ │ ├── bundle-connection-with-container.exp │ │ ├── bundle-interleave-down.exp │ │ ├── bundle-interleave-promote.exp │ │ ├── bundle-interleave-start.exp │ │ ├── bundle-nested-colocation.exp │ │ ├── bundle-order-fencing.exp │ │ ├── bundle-order-partial-start-2.exp │ │ ├── bundle-order-partial-start.exp │ │ ├── bundle-order-partial-stop.exp │ │ ├── bundle-order-partial.exp │ │ ├── bundle-order-startup-clone-2.exp │ │ ├── bundle-order-startup-clone.exp │ │ ├── bundle-order-startup.exp │ │ ├── bundle-order-stop-clone.exp │ │ ├── bundle-order-stop-on-remote.exp │ │ ├── bundle-order-stop.exp │ │ ├── bundle-probe-order-1.exp │ │ ├── bundle-probe-order-2.exp │ │ ├── bundle-probe-order-3.exp │ │ ├── bundle-probe-remotes.exp │ │ ├── bundle-promoted-anticolocation-1.exp │ │ ├── bundle-promoted-anticolocation-2.exp │ │ ├── bundle-promoted-anticolocation-3.exp │ │ ├── bundle-promoted-anticolocation-4.exp │ │ ├── bundle-promoted-anticolocation-5.exp │ │ ├── bundle-promoted-anticolocation-6.exp │ │ ├── bundle-promoted-colocation-1.exp │ │ ├── bundle-promoted-colocation-2.exp │ │ ├── bundle-promoted-colocation-3.exp │ │ ├── bundle-promoted-colocation-4.exp │ │ ├── bundle-promoted-colocation-5.exp │ │ ├── bundle-promoted-colocation-6.exp │ │ ├── bundle-promoted-location-1.exp │ │ ├── bundle-promoted-location-2.exp │ │ ├── bundle-promoted-location-3.exp │ │ ├── bundle-promoted-location-4.exp │ │ ├── bundle-promoted-location-5.exp │ │ ├── bundle-promoted-location-6.exp │ │ ├── bundle-replicas-change.exp │ │ ├── cancel-behind-moving-remote.exp │ │ ├── clbz5007-promotable-colocation.exp │ │ ├── clone-anon-dup.exp │ │ ├── clone-anon-failcount.exp │ │ ├── clone-anon-probe-1.exp │ │ ├── clone-anon-probe-2.exp │ │ ├── clone-fail-block-colocation.exp │ │ ├── clone-interleave-1.exp │ │ ├── clone-interleave-2.exp │ │ ├── clone-interleave-3.exp │ │ ├── clone-max-zero.exp │ │ ├── clone-no-shuffle.exp │ │ ├── clone-order-16instances.exp │ │ ├── clone-order-primitive.exp │ │ ├── clone-recover-no-shuffle-1.exp │ │ ├── clone-recover-no-shuffle-10.exp │ │ ├── clone-recover-no-shuffle-11.exp │ │ ├── clone-recover-no-shuffle-12.exp │ │ ├── clone-recover-no-shuffle-2.exp │ │ ├── clone-recover-no-shuffle-3.exp │ │ ├── clone-recover-no-shuffle-4.exp │ │ ├── clone-recover-no-shuffle-5.exp │ │ ├── clone-recover-no-shuffle-6.exp │ │ ├── clone-recover-no-shuffle-7.exp │ │ ├── clone-recover-no-shuffle-8.exp │ │ ├── clone-recover-no-shuffle-9.exp │ │ ├── clone-require-all-1.exp │ │ ├── clone-require-all-2.exp │ │ ├── clone-require-all-3.exp │ │ ├── clone-require-all-4.exp │ │ ├── clone-require-all-5.exp │ │ ├── clone-require-all-6.exp │ │ ├── clone-require-all-7.exp │ │ ├── clone-require-all-no-interleave-1.exp │ │ ├── clone-require-all-no-interleave-2.exp │ │ ├── clone-require-all-no-interleave-3.exp │ │ ├── clone-requires-quorum-recovery.exp │ │ ├── clone-requires-quorum.exp │ │ ├── clone_min_interleave_start_one.exp │ │ ├── clone_min_interleave_start_two.exp │ │ ├── clone_min_interleave_stop_one.exp │ │ ├── clone_min_interleave_stop_two.exp │ │ ├── clone_min_start_one.exp │ │ ├── clone_min_start_two.exp │ │ ├── clone_min_stop_all.exp │ │ ├── clone_min_stop_one.exp │ │ ├── clone_min_stop_two.exp │ │ ├── cloned-group-stop.exp │ │ ├── cloned-group.exp │ │ ├── cloned_start_one.exp │ │ ├── cloned_start_two.exp │ │ ├── cloned_stop_one.exp │ │ ├── cloned_stop_two.exp │ │ ├── cluster-specific-params.exp │ │ ├── colo_promoted_w_native.exp │ │ ├── colo_unpromoted_w_native.exp │ │ ├── coloc-attr.exp │ │ ├── coloc-clone-stays-active.exp │ │ ├── coloc-cloned-group-promoted-dependent1.exp │ │ ├── coloc-cloned-group-promoted-dependent2.exp │ │ ├── coloc-dependee-should-move.exp │ │ ├── coloc-dependee-should-stay.exp │ │ ├── coloc-group.exp │ │ ├── coloc-intra-set.exp │ │ ├── coloc-list.exp │ │ ├── coloc-loop.exp │ │ ├── coloc-many-one.exp │ │ ├── coloc-negative-group.exp │ │ ├── coloc-optional-promoted-dependent-moves-1.exp │ │ ├── coloc-optional-promoted-dependent-moves-2.exp │ │ ├── coloc-optional-promoted-dependent-stays-1.exp │ │ ├── coloc-optional-promoted-dependent-stays-2.exp │ │ ├── coloc-unpromoted-anti.exp │ │ ├── coloc-with-inner-group-member.exp │ │ ├── coloc_fp_logic.exp │ │ ├── colocate-primitive-with-clone.exp │ │ ├── colocate-unmanaged-group.exp │ │ ├── colocated-utilization-clone.exp │ │ ├── colocated-utilization-group.exp │ │ ├── colocated-utilization-primitive-1.exp │ │ ├── colocated-utilization-primitive-2.exp │ │ ├── colocation-influence.exp │ │ ├── colocation-priority-group.exp │ │ ├── colocation-vs-stickiness.exp │ │ ├── colocation_constraint_stops_promoted.exp │ │ ├── colocation_constraint_stops_unpromoted.exp │ │ ├── comments.exp │ │ ├── complex_enforce_colo.exp │ │ ├── concurrent-fencing.exp │ │ ├── container-1.exp │ │ ├── container-2.exp │ │ ├── container-3.exp │ │ ├── container-4.exp │ │ ├── container-group-1.exp │ │ ├── container-group-2.exp │ │ ├── container-group-3.exp │ │ ├── container-group-4.exp │ │ ├── container-is-remote-node.exp │ │ ├── date-1.exp │ │ ├── date-2.exp │ │ ├── date-3.exp │ │ ├── dc-fence-ordering.exp │ │ ├── enforce-colo1.exp │ │ ├── expire-non-blocked-failure.exp │ │ ├── expired-failed-probe-primitive.exp │ │ ├── expired-stop-1.exp │ │ ├── failcount-block.exp │ │ ├── failcount.exp │ │ ├── failed-demote-recovery-promoted.exp │ │ ├── failed-demote-recovery.exp │ │ ├── failed-probe-clone.exp │ │ ├── failed-probe-primitive.exp │ │ ├── failed-sticky-anticolocated-group.exp │ │ ├── failed-sticky-group.exp │ │ ├── force-anon-clone-max.exp │ │ ├── group-anticolocation-2.exp │ │ ├── group-anticolocation-3.exp │ │ ├── group-anticolocation-4.exp │ │ ├── group-anticolocation-5.exp │ │ ├── group-anticolocation.exp │ │ ├── group-colocation-failure.exp │ │ ├── group-dependents.exp │ │ ├── group-fail.exp │ │ ├── group-stop-ordering.exp │ │ ├── group-unmanaged-stopped.exp │ │ ├── group-unmanaged.exp │ │ ├── group1.exp │ │ ├── group10.exp │ │ ├── group11.exp │ │ ├── group13.exp │ │ ├── group14.exp │ │ ├── group15.exp │ │ ├── group2.exp │ │ ├── group3.exp │ │ ├── group4.exp │ │ ├── group5.exp │ │ ├── group6.exp │ │ ├── group7.exp │ │ ├── group8.exp │ │ ├── group9.exp │ │ ├── guest-host-not-fenceable.exp │ │ ├── guest-node-cleanup.exp │ │ ├── guest-node-host-dies.exp │ │ ├── history-1.exp │ │ ├── honor_stonith_rsc_order1.exp │ │ ├── honor_stonith_rsc_order2.exp │ │ ├── honor_stonith_rsc_order3.exp │ │ ├── honor_stonith_rsc_order4.exp │ │ ├── ignore_stonith_rsc_order1.exp │ │ ├── ignore_stonith_rsc_order2.exp │ │ ├── ignore_stonith_rsc_order3.exp │ │ ├── ignore_stonith_rsc_order4.exp │ │ ├── inc0.exp │ │ ├── inc1.exp │ │ ├── inc10.exp │ │ ├── inc11.exp │ │ ├── inc12.exp │ │ ├── inc2.exp │ │ ├── inc3.exp │ │ ├── inc4.exp │ │ ├── inc5.exp │ │ ├── inc6.exp │ │ ├── inc7.exp │ │ ├── inc8.exp │ │ ├── inc9.exp │ │ ├── interleave-0.exp │ │ ├── interleave-1.exp │ │ ├── interleave-2.exp │ │ ├── interleave-3.exp │ │ ├── interleave-pseudo-stop.exp │ │ ├── interleave-restart.exp │ │ ├── interleave-stop.exp │ │ ├── intervals.exp │ │ ├── leftover-pending-monitor.exp │ │ ├── load-stopped-loop-2.exp │ │ ├── load-stopped-loop.exp │ │ ├── location-date-rules-1.exp │ │ ├── location-date-rules-2.exp │ │ ├── location-sets-templates.exp │ │ ├── managed-0.exp │ │ ├── managed-1.exp │ │ ├── managed-2.exp │ │ ├── migrate-1.exp │ │ ├── migrate-2.exp │ │ ├── migrate-3.exp │ │ ├── migrate-4.exp │ │ ├── migrate-5.exp │ │ ├── migrate-begin.exp │ │ ├── migrate-both-vms.exp │ │ ├── migrate-fail-2.exp │ │ ├── migrate-fail-3.exp │ │ ├── migrate-fail-4.exp │ │ ├── migrate-fail-5.exp │ │ ├── migrate-fail-6.exp │ │ ├── migrate-fail-7.exp │ │ ├── migrate-fail-8.exp │ │ ├── migrate-fail-9.exp │ │ ├── migrate-fencing.exp │ │ ├── migrate-partial-1.exp │ │ ├── migrate-partial-2.exp │ │ ├── migrate-partial-3.exp │ │ ├── migrate-partial-4.exp │ │ ├── migrate-shutdown.exp │ │ ├── migrate-start-complex.exp │ │ ├── migrate-start.exp │ │ ├── migrate-stop-complex.exp │ │ ├── migrate-stop-start-complex.exp │ │ ├── migrate-stop.exp │ │ ├── migrate-stop_start.exp │ │ ├── migrate-success.exp │ │ ├── migration-behind-migrating-remote.exp │ │ ├── migration-intermediary-cleaned.exp │ │ ├── migration-ping-pong.exp │ │ ├── minimal.exp │ │ ├── mon-rsc-1.exp │ │ ├── mon-rsc-2.exp │ │ ├── mon-rsc-3.exp │ │ ├── mon-rsc-4.exp │ │ ├── monitor-onfail-restart.exp │ │ ├── monitor-onfail-stop.exp │ │ ├── monitor-recovery.exp │ │ ├── multi1.exp │ │ ├── multiple-active-block-group.exp │ │ ├── multiple-monitor-one-failed.exp │ │ ├── multiply-active-stonith.exp │ │ ├── nested-remote-recovery.exp │ │ ├── no-promote-on-unrunnable-guest.exp │ │ ├── no_quorum_demote.exp │ │ ├── node-maintenance-1.exp │ │ ├── node-maintenance-2.exp │ │ ├── node-pending-timeout.exp │ │ ├── not-installed-agent.exp │ │ ├── not-installed-tools.exp │ │ ├── not-reschedule-unneeded-monitor.exp │ │ ├── notifs-for-unrunnable.exp │ │ ├── notify-0.exp │ │ ├── notify-1.exp │ │ ├── notify-2.exp │ │ ├── notify-3.exp │ │ ├── notify-behind-stopping-remote.exp │ │ ├── novell-239079.exp │ │ ├── novell-239082.exp │ │ ├── novell-239087.exp │ │ ├── novell-251689.exp │ │ ├── novell-252693-2.exp │ │ ├── novell-252693-3.exp │ │ ├── novell-252693.exp │ │ ├── nvpair-date-rules-1.exp │ │ ├── nvpair-id-ref.exp │ │ ├── obsolete-lrm-resource.exp │ │ ├── ocf_degraded-remap-ocf_ok.exp │ │ ├── ocf_degraded_promoted-remap-ocf_ok.exp │ │ ├── on-fail-ignore.exp │ │ ├── on_fail_demote1.exp │ │ ├── on_fail_demote2.exp │ │ ├── on_fail_demote3.exp │ │ ├── on_fail_demote4.exp │ │ ├── one-or-more-0.exp │ │ ├── one-or-more-1.exp │ │ ├── one-or-more-2.exp │ │ ├── one-or-more-3.exp │ │ ├── one-or-more-4.exp │ │ ├── one-or-more-5.exp │ │ ├── one-or-more-6.exp │ │ ├── one-or-more-7.exp │ │ ├── one-or-more-unrunnable-instances.exp │ │ ├── op-defaults-2.exp │ │ ├── op-defaults-3.exp │ │ ├── op-defaults.exp │ │ ├── order-clone.exp │ │ ├── order-expired-failure.exp │ │ ├── order-first-probes.exp │ │ ├── order-mandatory.exp │ │ ├── order-optional-keyword.exp │ │ ├── order-optional.exp │ │ ├── order-required.exp │ │ ├── order-serialize-set.exp │ │ ├── order-serialize.exp │ │ ├── order-sets.exp │ │ ├── order-wrong-kind.exp │ │ ├── order1.exp │ │ ├── order2.exp │ │ ├── order3.exp │ │ ├── order4.exp │ │ ├── order5.exp │ │ ├── order6.exp │ │ ├── order7.exp │ │ ├── order_constraint_stops_promoted.exp │ │ ├── order_constraint_stops_unpromoted.exp │ │ ├── ordered-set-basic-startup.exp │ │ ├── ordered-set-natural.exp │ │ ├── origin.exp │ │ ├── orphan-0.exp │ │ ├── orphan-1.exp │ │ ├── orphan-2.exp │ │ ├── params-0.exp │ │ ├── params-1.exp │ │ ├── params-2.exp │ │ ├── params-3.exp │ │ ├── params-4.exp │ │ ├── params-5.exp │ │ ├── params-6.exp │ │ ├── partial-live-migration-multiple-active.exp │ │ ├── partial-unmanaged-group.exp │ │ ├── pending-node-no-uname.exp │ │ ├── per-node-attrs.exp │ │ ├── per-op-failcount.exp │ │ ├── placement-capacity.exp │ │ ├── placement-location.exp │ │ ├── placement-priority.exp │ │ ├── placement-stickiness.exp │ │ ├── primitive-with-group-with-clone.exp │ │ ├── primitive-with-group-with-promoted.exp │ │ ├── primitive-with-unrunnable-group.exp │ │ ├── priority-fencing-delay.exp │ │ ├── probe-0.exp │ │ ├── probe-1.exp │ │ ├── probe-2.exp │ │ ├── probe-3.exp │ │ ├── probe-4.exp │ │ ├── probe-pending-node.exp │ │ ├── probe-target-of-failed-migrate_to-1.exp │ │ ├── probe-target-of-failed-migrate_to-2.exp │ │ ├── probe-timeout.exp │ │ ├── promotable-colocation-with-node-attribute.exp │ │ ├── promoted-0.exp │ │ ├── promoted-1.exp │ │ ├── promoted-10.exp │ │ ├── promoted-11.exp │ │ ├── promoted-12.exp │ │ ├── promoted-13.exp │ │ ├── promoted-2.exp │ │ ├── promoted-3.exp │ │ ├── promoted-4.exp │ │ ├── promoted-5.exp │ │ ├── promoted-6.exp │ │ ├── promoted-7.exp │ │ ├── promoted-8.exp │ │ ├── promoted-9.exp │ │ ├── promoted-allow-start.exp │ │ ├── promoted-asymmetrical-order.exp │ │ ├── promoted-colocation.exp │ │ ├── promoted-demote-2.exp │ │ ├── promoted-demote-block.exp │ │ ├── promoted-demote.exp │ │ ├── promoted-depend.exp │ │ ├── promoted-dependent-ban.exp │ │ ├── promoted-failed-demote-2.exp │ │ ├── promoted-failed-demote.exp │ │ ├── promoted-group.exp │ │ ├── promoted-move.exp │ │ ├── promoted-notify.exp │ │ ├── promoted-ordering.exp │ │ ├── promoted-partially-demoted-group.exp │ │ ├── promoted-probed-score.exp │ │ ├── promoted-promotion-constraint.exp │ │ ├── promoted-pseudo.exp │ │ ├── promoted-reattach.exp │ │ ├── promoted-role.exp │ │ ├── promoted-score-startup.exp │ │ ├── promoted-stop.exp │ │ ├── promoted-unmanaged-monitor.exp │ │ ├── promoted-with-blocked.exp │ │ ├── promoted_monitor_restart.exp │ │ ├── quorum-1.exp │ │ ├── quorum-2.exp │ │ ├── quorum-3.exp │ │ ├── quorum-4.exp │ │ ├── quorum-5.exp │ │ ├── quorum-6.exp │ │ ├── rebalance-unique-clones.exp │ │ ├── rec-node-1.exp │ │ ├── rec-node-10.exp │ │ ├── rec-node-11.exp │ │ ├── rec-node-12.exp │ │ ├── rec-node-13.exp │ │ ├── rec-node-14.exp │ │ ├── rec-node-15.exp │ │ ├── rec-node-2.exp │ │ ├── rec-node-3.exp │ │ ├── rec-node-4.exp │ │ ├── rec-node-5.exp │ │ ├── rec-node-6.exp │ │ ├── rec-node-7.exp │ │ ├── rec-node-8.exp │ │ ├── rec-node-9.exp │ │ ├── rec-rsc-0.exp │ │ ├── rec-rsc-1.exp │ │ ├── rec-rsc-2.exp │ │ ├── rec-rsc-3.exp │ │ ├── rec-rsc-4.exp │ │ ├── rec-rsc-5.exp │ │ ├── rec-rsc-6.exp │ │ ├── rec-rsc-7.exp │ │ ├── rec-rsc-8.exp │ │ ├── rec-rsc-9.exp │ │ ├── reload-becomes-restart.exp │ │ ├── remote-connection-shutdown.exp │ │ ├── remote-connection-unrecoverable.exp │ │ ├── remote-disable.exp │ │ ├── remote-fence-before-reconnect.exp │ │ ├── remote-fence-unclean-3.exp │ │ ├── remote-fence-unclean.exp │ │ ├── remote-fence-unclean2.exp │ │ ├── remote-move.exp │ │ ├── remote-orphaned.exp │ │ ├── remote-orphaned2.exp │ │ ├── remote-partial-migrate.exp │ │ ├── remote-partial-migrate2.exp │ │ ├── remote-probe-disable.exp │ │ ├── remote-reconnect-delay.exp │ │ ├── remote-recover-all.exp │ │ ├── remote-recover-connection.exp │ │ ├── remote-recover-fail.exp │ │ ├── remote-recover-no-resources.exp │ │ ├── remote-recover-unknown.exp │ │ ├── remote-recover.exp │ │ ├── remote-recovery.exp │ │ ├── remote-stale-node-entry.exp │ │ ├── remote-start-fail.exp │ │ ├── remote-startup-probes.exp │ │ ├── remote-startup.exp │ │ ├── remote-unclean2.exp │ │ ├── resource-discovery.exp │ │ ├── restart-with-extra-op-params.exp │ │ ├── route-remote-notify.exp │ │ ├── rsc-defaults-2.exp │ │ ├── rsc-defaults.exp │ │ ├── rsc-discovery-per-node.exp │ │ ├── rsc-maintenance.exp │ │ ├── rsc-sets-clone-1.exp │ │ ├── rsc-sets-clone.exp │ │ ├── rsc-sets-promoted.exp │ │ ├── rsc-sets-seq-false.exp │ │ ├── rsc-sets-seq-true.exp │ │ ├── rsc_dep1.exp │ │ ├── rsc_dep10.exp │ │ ├── rsc_dep2.exp │ │ ├── rsc_dep3.exp │ │ ├── rsc_dep4.exp │ │ ├── rsc_dep5.exp │ │ ├── rsc_dep7.exp │ │ ├── rsc_dep8.exp │ │ ├── rule-dbl-as-auto-number-match.exp │ │ ├── rule-dbl-as-auto-number-no-match.exp │ │ ├── rule-dbl-as-integer-match.exp │ │ ├── rule-dbl-as-integer-no-match.exp │ │ ├── rule-dbl-as-number-match.exp │ │ ├── rule-dbl-as-number-no-match.exp │ │ ├── rule-dbl-parse-fail-default-str-match.exp │ │ ├── rule-dbl-parse-fail-default-str-no-match.exp │ │ ├── rule-int-as-auto-integer-match.exp │ │ ├── rule-int-as-auto-integer-no-match.exp │ │ ├── rule-int-as-integer-match.exp │ │ ├── rule-int-as-integer-no-match.exp │ │ ├── rule-int-as-number-match.exp │ │ ├── rule-int-as-number-no-match.exp │ │ ├── rule-int-parse-fail-default-str-match.exp │ │ ├── rule-int-parse-fail-default-str-no-match.exp │ │ ├── shutdown-lock-expiration.exp │ │ ├── shutdown-lock.exp │ │ ├── shutdown-maintenance-node.exp │ │ ├── simple1.exp │ │ ├── simple11.exp │ │ ├── simple12.exp │ │ ├── simple2.exp │ │ ├── simple3.exp │ │ ├── simple4.exp │ │ ├── simple6.exp │ │ ├── simple7.exp │ │ ├── simple8.exp │ │ ├── site-specific-params.exp │ │ ├── standby.exp │ │ ├── start-then-stop-with-unfence.exp │ │ ├── stonith-0.exp │ │ ├── stonith-1.exp │ │ ├── stonith-2.exp │ │ ├── stonith-3.exp │ │ ├── stonith-4.exp │ │ ├── stop-all-resources.exp │ │ ├── stop-failure-no-fencing.exp │ │ ├── stop-failure-no-quorum.exp │ │ ├── stop-failure-with-fencing.exp │ │ ├── stop-unexpected-2.exp │ │ ├── stop-unexpected.exp │ │ ├── stopped-monitor-00.exp │ │ ├── stopped-monitor-01.exp │ │ ├── stopped-monitor-02.exp │ │ ├── stopped-monitor-03.exp │ │ ├── stopped-monitor-04.exp │ │ ├── stopped-monitor-05.exp │ │ ├── stopped-monitor-06.exp │ │ ├── stopped-monitor-07.exp │ │ ├── stopped-monitor-08.exp │ │ ├── stopped-monitor-09.exp │ │ ├── stopped-monitor-10.exp │ │ ├── stopped-monitor-11.exp │ │ ├── stopped-monitor-12.exp │ │ ├── stopped-monitor-20.exp │ │ ├── stopped-monitor-21.exp │ │ ├── stopped-monitor-22.exp │ │ ├── stopped-monitor-23.exp │ │ ├── stopped-monitor-24.exp │ │ ├── stopped-monitor-25.exp │ │ ├── stopped-monitor-26.exp │ │ ├── stopped-monitor-27.exp │ │ ├── stopped-monitor-30.exp │ │ ├── stopped-monitor-31.exp │ │ ├── suicide-needed-inquorate.exp │ │ ├── suicide-not-needed-initial-quorum.exp │ │ ├── suicide-not-needed-never-quorate.exp │ │ ├── suicide-not-needed-quorate.exp │ │ ├── systemhealth1.exp │ │ ├── systemhealth2.exp │ │ ├── systemhealth3.exp │ │ ├── systemhealthm1.exp │ │ ├── systemhealthm2.exp │ │ ├── systemhealthm3.exp │ │ ├── systemhealthn1.exp │ │ ├── systemhealthn2.exp │ │ ├── systemhealthn3.exp │ │ ├── systemhealtho1.exp │ │ ├── systemhealtho2.exp │ │ ├── systemhealtho3.exp │ │ ├── systemhealthp1.exp │ │ ├── systemhealthp2.exp │ │ ├── systemhealthp3.exp │ │ ├── tags-coloc-order-1.exp │ │ ├── tags-coloc-order-2.exp │ │ ├── tags-location.exp │ │ ├── tags-ticket.exp │ │ ├── target-0.exp │ │ ├── target-1.exp │ │ ├── target-2.exp │ │ ├── template-1.exp │ │ ├── template-2.exp │ │ ├── template-3.exp │ │ ├── template-clone-group.exp │ │ ├── template-clone-primitive.exp │ │ ├── template-coloc-1.exp │ │ ├── template-coloc-2.exp │ │ ├── template-coloc-3.exp │ │ ├── template-order-1.exp │ │ ├── template-order-2.exp │ │ ├── template-order-3.exp │ │ ├── template-rsc-sets-1.exp │ │ ├── template-rsc-sets-2.exp │ │ ├── template-rsc-sets-3.exp │ │ ├── template-rsc-sets-4.exp │ │ ├── template-ticket.exp │ │ ├── ticket-clone-1.exp │ │ ├── ticket-clone-10.exp │ │ ├── ticket-clone-11.exp │ │ ├── ticket-clone-12.exp │ │ ├── ticket-clone-13.exp │ │ ├── ticket-clone-14.exp │ │ ├── ticket-clone-15.exp │ │ ├── ticket-clone-16.exp │ │ ├── ticket-clone-17.exp │ │ ├── ticket-clone-18.exp │ │ ├── ticket-clone-19.exp │ │ ├── ticket-clone-2.exp │ │ ├── ticket-clone-20.exp │ │ ├── ticket-clone-21.exp │ │ ├── ticket-clone-22.exp │ │ ├── ticket-clone-23.exp │ │ ├── ticket-clone-24.exp │ │ ├── ticket-clone-3.exp │ │ ├── ticket-clone-4.exp │ │ ├── ticket-clone-5.exp │ │ ├── ticket-clone-6.exp │ │ ├── ticket-clone-7.exp │ │ ├── ticket-clone-8.exp │ │ ├── ticket-clone-9.exp │ │ ├── ticket-group-1.exp │ │ ├── ticket-group-10.exp │ │ ├── ticket-group-11.exp │ │ ├── ticket-group-12.exp │ │ ├── ticket-group-13.exp │ │ ├── ticket-group-14.exp │ │ ├── ticket-group-15.exp │ │ ├── ticket-group-16.exp │ │ ├── ticket-group-17.exp │ │ ├── ticket-group-18.exp │ │ ├── ticket-group-19.exp │ │ ├── ticket-group-2.exp │ │ ├── ticket-group-20.exp │ │ ├── ticket-group-21.exp │ │ ├── ticket-group-22.exp │ │ ├── ticket-group-23.exp │ │ ├── ticket-group-24.exp │ │ ├── ticket-group-3.exp │ │ ├── ticket-group-4.exp │ │ ├── ticket-group-5.exp │ │ ├── ticket-group-6.exp │ │ ├── ticket-group-7.exp │ │ ├── ticket-group-8.exp │ │ ├── ticket-group-9.exp │ │ ├── ticket-primitive-1.exp │ │ ├── ticket-primitive-10.exp │ │ ├── ticket-primitive-11.exp │ │ ├── ticket-primitive-12.exp │ │ ├── ticket-primitive-13.exp │ │ ├── ticket-primitive-14.exp │ │ ├── ticket-primitive-15.exp │ │ ├── ticket-primitive-16.exp │ │ ├── ticket-primitive-17.exp │ │ ├── ticket-primitive-18.exp │ │ ├── ticket-primitive-19.exp │ │ ├── ticket-primitive-2.exp │ │ ├── ticket-primitive-20.exp │ │ ├── ticket-primitive-21.exp │ │ ├── ticket-primitive-22.exp │ │ ├── ticket-primitive-23.exp │ │ ├── ticket-primitive-24.exp │ │ ├── ticket-primitive-3.exp │ │ ├── ticket-primitive-4.exp │ │ ├── ticket-primitive-5.exp │ │ ├── ticket-primitive-6.exp │ │ ├── ticket-primitive-7.exp │ │ ├── ticket-primitive-8.exp │ │ ├── ticket-primitive-9.exp │ │ ├── ticket-promoted-1.exp │ │ ├── ticket-promoted-10.exp │ │ ├── ticket-promoted-11.exp │ │ ├── ticket-promoted-12.exp │ │ ├── ticket-promoted-13.exp │ │ ├── ticket-promoted-14.exp │ │ ├── ticket-promoted-15.exp │ │ ├── ticket-promoted-16.exp │ │ ├── ticket-promoted-17.exp │ │ ├── ticket-promoted-18.exp │ │ ├── ticket-promoted-19.exp │ │ ├── ticket-promoted-2.exp │ │ ├── ticket-promoted-20.exp │ │ ├── ticket-promoted-21.exp │ │ ├── ticket-promoted-22.exp │ │ ├── ticket-promoted-23.exp │ │ ├── ticket-promoted-24.exp │ │ ├── ticket-promoted-3.exp │ │ ├── ticket-promoted-4.exp │ │ ├── ticket-promoted-5.exp │ │ ├── ticket-promoted-6.exp │ │ ├── ticket-promoted-7.exp │ │ ├── ticket-promoted-8.exp │ │ ├── ticket-promoted-9.exp │ │ ├── ticket-rsc-sets-1.exp │ │ ├── ticket-rsc-sets-10.exp │ │ ├── ticket-rsc-sets-11.exp │ │ ├── ticket-rsc-sets-12.exp │ │ ├── ticket-rsc-sets-13.exp │ │ ├── ticket-rsc-sets-14.exp │ │ ├── ticket-rsc-sets-2.exp │ │ ├── ticket-rsc-sets-3.exp │ │ ├── ticket-rsc-sets-4.exp │ │ ├── ticket-rsc-sets-5.exp │ │ ├── ticket-rsc-sets-6.exp │ │ ├── ticket-rsc-sets-7.exp │ │ ├── ticket-rsc-sets-8.exp │ │ ├── ticket-rsc-sets-9.exp │ │ ├── unfence-definition.exp │ │ ├── unfence-device.exp │ │ ├── unfence-parameters.exp │ │ ├── unfence-startup.exp │ │ ├── unmanaged-block-restart.exp │ │ ├── unmanaged-promoted.exp │ │ ├── unmanaged-stop-1.exp │ │ ├── unmanaged-stop-2.exp │ │ ├── unmanaged-stop-3.exp │ │ ├── unmanaged-stop-4.exp │ │ ├── unrunnable-1.exp │ │ ├── unrunnable-2.exp │ │ ├── use-after-free-merge.exp │ │ ├── utilization-check-allowed-nodes.exp │ │ ├── utilization-complex.exp │ │ ├── utilization-order1.exp │ │ ├── utilization-order2.exp │ │ ├── utilization-order3.exp │ │ ├── utilization-order4.exp │ │ ├── utilization-shuffle.exp │ │ ├── utilization.exp │ │ ├── value-source.exp │ │ ├── whitebox-asymmetric.exp │ │ ├── whitebox-fail1.exp │ │ ├── whitebox-fail2.exp │ │ ├── whitebox-fail3.exp │ │ ├── whitebox-imply-stop-on-fence.exp │ │ ├── whitebox-migrate1.exp │ │ ├── whitebox-move.exp │ │ ├── whitebox-ms-ordering-move.exp │ │ ├── whitebox-ms-ordering.exp │ │ ├── whitebox-nested-group.exp │ │ ├── whitebox-orphan-ms.exp │ │ ├── whitebox-orphaned.exp │ │ ├── whitebox-start.exp │ │ ├── whitebox-stop.exp │ │ ├── whitebox-unexpectedly-running.exp │ │ └── year-2038.exp │ ├── scores │ │ ├── 1-a-then-bm-move-b.scores │ │ ├── 10-a-then-bm-b-move-a-clone.scores │ │ ├── 11-a-then-bm-b-move-a-clone-starting.scores │ │ ├── 1360.scores │ │ ├── 1484.scores │ │ ├── 1494.scores │ │ ├── 2-am-then-b-move-a.scores │ │ ├── 3-am-then-bm-both-migrate.scores │ │ ├── 4-am-then-bm-b-not-migratable.scores │ │ ├── 5-am-then-bm-a-not-migratable.scores │ │ ├── 594.scores │ │ ├── 6-migrate-group.scores │ │ ├── 662.scores │ │ ├── 696.scores │ │ ├── 7-migrate-group-one-unmigratable.scores │ │ ├── 726.scores │ │ ├── 735.scores │ │ ├── 764.scores │ │ ├── 797.scores │ │ ├── 8-am-then-bm-a-migrating-b-stopping.scores │ │ ├── 829.scores │ │ ├── 9-am-then-bm-b-migrating-a-stopping.scores │ │ ├── 994-2.scores │ │ ├── 994.scores │ │ ├── Makefile.am │ │ ├── a-demote-then-b-migrate.scores │ │ ├── a-promote-then-b-migrate.scores │ │ ├── allow-unhealthy-nodes.scores │ │ ├── anon-instance-pending.scores │ │ ├── anti-colocation-order.scores │ │ ├── anti-colocation-promoted.scores │ │ ├── anti-colocation-unpromoted.scores │ │ ├── asymmetric.scores │ │ ├── asymmetrical-order-move.scores │ │ ├── asymmetrical-order-restart.scores │ │ ├── attrs1.scores │ │ ├── attrs2.scores │ │ ├── attrs3.scores │ │ ├── attrs4.scores │ │ ├── attrs5.scores │ │ ├── attrs6.scores │ │ ├── attrs7.scores │ │ ├── attrs8.scores │ │ ├── balanced.scores │ │ ├── banned-group-inner-constraints.scores │ │ ├── base-score.scores │ │ ├── bnc-515172.scores │ │ ├── bug-1572-1.scores │ │ ├── bug-1572-2.scores │ │ ├── bug-1573.scores │ │ ├── bug-1685.scores │ │ ├── bug-1718.scores │ │ ├── bug-1765.scores │ │ ├── bug-1820-1.scores │ │ ├── bug-1820.scores │ │ ├── bug-1822.scores │ │ ├── bug-5014-A-start-B-start.scores │ │ ├── bug-5014-A-stop-B-started.scores │ │ ├── bug-5014-A-stopped-B-stopped.scores │ │ ├── bug-5014-CLONE-A-start-B-start.scores │ │ ├── bug-5014-CLONE-A-stop-B-started.scores │ │ ├── bug-5014-CthenAthenB-C-stopped.scores │ │ ├── bug-5014-GROUP-A-start-B-start.scores │ │ ├── bug-5014-GROUP-A-stopped-B-started.scores │ │ ├── bug-5014-GROUP-A-stopped-B-stopped.scores │ │ ├── bug-5014-ordered-set-symmetrical-false.scores │ │ ├── bug-5014-ordered-set-symmetrical-true.scores │ │ ├── bug-5025-1.scores │ │ ├── bug-5025-2.scores │ │ ├── bug-5025-3.scores │ │ ├── bug-5025-4.scores │ │ ├── bug-5028-bottom.scores │ │ ├── bug-5028-detach.scores │ │ ├── bug-5028.scores │ │ ├── bug-5038.scores │ │ ├── bug-5059.scores │ │ ├── bug-5069-op-disabled.scores │ │ ├── bug-5069-op-enabled.scores │ │ ├── bug-5140-require-all-false.scores │ │ ├── bug-5143-ms-shuffle.scores │ │ ├── bug-5186-partial-migrate.scores │ │ ├── bug-cl-5168.scores │ │ ├── bug-cl-5170.scores │ │ ├── bug-cl-5212.scores │ │ ├── bug-cl-5213.scores │ │ ├── bug-cl-5219.scores │ │ ├── bug-cl-5247.scores │ │ ├── bug-lf-1852.scores │ │ ├── bug-lf-1920.scores │ │ ├── bug-lf-2106.scores │ │ ├── bug-lf-2153.scores │ │ ├── bug-lf-2160.scores │ │ ├── bug-lf-2171.scores │ │ ├── bug-lf-2213.scores │ │ ├── bug-lf-2317.scores │ │ ├── bug-lf-2358.scores │ │ ├── bug-lf-2361.scores │ │ ├── bug-lf-2422.scores │ │ ├── bug-lf-2435.scores │ │ ├── bug-lf-2445.scores │ │ ├── bug-lf-2453.scores │ │ ├── bug-lf-2474.scores │ │ ├── bug-lf-2493.scores │ │ ├── bug-lf-2508.scores │ │ ├── bug-lf-2544.scores │ │ ├── bug-lf-2551.scores │ │ ├── bug-lf-2574.scores │ │ ├── bug-lf-2581.scores │ │ ├── bug-lf-2606.scores │ │ ├── bug-lf-2619.scores │ │ ├── bug-n-385265-2.scores │ │ ├── bug-n-385265.scores │ │ ├── bug-n-387749.scores │ │ ├── bug-pm-11.scores │ │ ├── bug-pm-12.scores │ │ ├── bug-rh-1097457.scores │ │ ├── bug-rh-880249.scores │ │ ├── bug-suse-707150.scores │ │ ├── bundle-connection-with-container.scores │ │ ├── bundle-interleave-down.scores │ │ ├── bundle-interleave-promote.scores │ │ ├── bundle-interleave-start.scores │ │ ├── bundle-nested-colocation.scores │ │ ├── bundle-order-fencing.scores │ │ ├── bundle-order-partial-start-2.scores │ │ ├── bundle-order-partial-start.scores │ │ ├── bundle-order-partial-stop.scores │ │ ├── bundle-order-partial.scores │ │ ├── bundle-order-startup-clone-2.scores │ │ ├── bundle-order-startup-clone.scores │ │ ├── bundle-order-startup.scores │ │ ├── bundle-order-stop-clone.scores │ │ ├── bundle-order-stop-on-remote.scores │ │ ├── bundle-order-stop.scores │ │ ├── bundle-probe-order-1.scores │ │ ├── bundle-probe-order-2.scores │ │ ├── bundle-probe-order-3.scores │ │ ├── bundle-probe-remotes.scores │ │ ├── bundle-promoted-anticolocation-1.scores │ │ ├── bundle-promoted-anticolocation-2.scores │ │ ├── bundle-promoted-anticolocation-3.scores │ │ ├── bundle-promoted-anticolocation-4.scores │ │ ├── bundle-promoted-anticolocation-5.scores │ │ ├── bundle-promoted-anticolocation-6.scores │ │ ├── bundle-promoted-colocation-1.scores │ │ ├── bundle-promoted-colocation-2.scores │ │ ├── bundle-promoted-colocation-3.scores │ │ ├── bundle-promoted-colocation-4.scores │ │ ├── bundle-promoted-colocation-5.scores │ │ ├── bundle-promoted-colocation-6.scores │ │ ├── bundle-promoted-location-1.scores │ │ ├── bundle-promoted-location-2.scores │ │ ├── bundle-promoted-location-3.scores │ │ ├── bundle-promoted-location-4.scores │ │ ├── bundle-promoted-location-5.scores │ │ ├── bundle-promoted-location-6.scores │ │ ├── bundle-replicas-change.scores │ │ ├── cancel-behind-moving-remote.scores │ │ ├── clbz5007-promotable-colocation.scores │ │ ├── clone-anon-dup.scores │ │ ├── clone-anon-failcount.scores │ │ ├── clone-anon-probe-1.scores │ │ ├── clone-anon-probe-2.scores │ │ ├── clone-fail-block-colocation.scores │ │ ├── clone-interleave-1.scores │ │ ├── clone-interleave-2.scores │ │ ├── clone-interleave-3.scores │ │ ├── clone-max-zero.scores │ │ ├── clone-no-shuffle.scores │ │ ├── clone-order-16instances.scores │ │ ├── clone-order-primitive.scores │ │ ├── clone-recover-no-shuffle-1.scores │ │ ├── clone-recover-no-shuffle-10.scores │ │ ├── clone-recover-no-shuffle-11.scores │ │ ├── clone-recover-no-shuffle-12.scores │ │ ├── clone-recover-no-shuffle-2.scores │ │ ├── clone-recover-no-shuffle-3.scores │ │ ├── clone-recover-no-shuffle-4.scores │ │ ├── clone-recover-no-shuffle-5.scores │ │ ├── clone-recover-no-shuffle-6.scores │ │ ├── clone-recover-no-shuffle-7.scores │ │ ├── clone-recover-no-shuffle-8.scores │ │ ├── clone-recover-no-shuffle-9.scores │ │ ├── clone-require-all-1.scores │ │ ├── clone-require-all-2.scores │ │ ├── clone-require-all-3.scores │ │ ├── clone-require-all-4.scores │ │ ├── clone-require-all-5.scores │ │ ├── clone-require-all-6.scores │ │ ├── clone-require-all-7.scores │ │ ├── clone-require-all-no-interleave-1.scores │ │ ├── clone-require-all-no-interleave-2.scores │ │ ├── clone-require-all-no-interleave-3.scores │ │ ├── clone-requires-quorum-recovery.scores │ │ ├── clone-requires-quorum.scores │ │ ├── clone_min_interleave_start_one.scores │ │ ├── clone_min_interleave_start_two.scores │ │ ├── clone_min_interleave_stop_one.scores │ │ ├── clone_min_interleave_stop_two.scores │ │ ├── clone_min_start_one.scores │ │ ├── clone_min_start_two.scores │ │ ├── clone_min_stop_all.scores │ │ ├── clone_min_stop_one.scores │ │ ├── clone_min_stop_two.scores │ │ ├── cloned-group-stop.scores │ │ ├── cloned-group.scores │ │ ├── cloned_start_one.scores │ │ ├── cloned_start_two.scores │ │ ├── cloned_stop_one.scores │ │ ├── cloned_stop_two.scores │ │ ├── cluster-specific-params.scores │ │ ├── colo_promoted_w_native.scores │ │ ├── colo_unpromoted_w_native.scores │ │ ├── coloc-attr.scores │ │ ├── coloc-clone-stays-active.scores │ │ ├── coloc-cloned-group-promoted-dependent1.scores │ │ ├── coloc-cloned-group-promoted-dependent2.scores │ │ ├── coloc-dependee-should-move.scores │ │ ├── coloc-dependee-should-stay.scores │ │ ├── coloc-group.scores │ │ ├── coloc-intra-set.scores │ │ ├── coloc-list.scores │ │ ├── coloc-loop.scores │ │ ├── coloc-many-one.scores │ │ ├── coloc-negative-group.scores │ │ ├── coloc-optional-promoted-dependent-moves-1.scores │ │ ├── coloc-optional-promoted-dependent-moves-2.scores │ │ ├── coloc-optional-promoted-dependent-stays-1.scores │ │ ├── coloc-optional-promoted-dependent-stays-2.scores │ │ ├── coloc-unpromoted-anti.scores │ │ ├── coloc-with-inner-group-member.scores │ │ ├── coloc_fp_logic.scores │ │ ├── colocate-primitive-with-clone.scores │ │ ├── colocate-unmanaged-group.scores │ │ ├── colocated-utilization-clone.scores │ │ ├── colocated-utilization-group.scores │ │ ├── colocated-utilization-primitive-1.scores │ │ ├── colocated-utilization-primitive-2.scores │ │ ├── colocation-influence.scores │ │ ├── colocation-priority-group.scores │ │ ├── colocation-vs-stickiness.scores │ │ ├── colocation_constraint_stops_promoted.scores │ │ ├── colocation_constraint_stops_unpromoted.scores │ │ ├── comments.scores │ │ ├── complex_enforce_colo.scores │ │ ├── concurrent-fencing.scores │ │ ├── container-1.scores │ │ ├── container-2.scores │ │ ├── container-3.scores │ │ ├── container-4.scores │ │ ├── container-group-1.scores │ │ ├── container-group-2.scores │ │ ├── container-group-3.scores │ │ ├── container-group-4.scores │ │ ├── container-is-remote-node.scores │ │ ├── date-1.scores │ │ ├── date-2.scores │ │ ├── date-3.scores │ │ ├── dc-fence-ordering.scores │ │ ├── enforce-colo1.scores │ │ ├── expire-non-blocked-failure.scores │ │ ├── expired-failed-probe-primitive.scores │ │ ├── expired-stop-1.scores │ │ ├── failcount-block.scores │ │ ├── failcount.scores │ │ ├── failed-demote-recovery-promoted.scores │ │ ├── failed-demote-recovery.scores │ │ ├── failed-probe-clone.scores │ │ ├── failed-probe-primitive.scores │ │ ├── failed-sticky-anticolocated-group.scores │ │ ├── failed-sticky-group.scores │ │ ├── force-anon-clone-max.scores │ │ ├── group-anticolocation-2.scores │ │ ├── group-anticolocation-3.scores │ │ ├── group-anticolocation-4.scores │ │ ├── group-anticolocation-5.scores │ │ ├── group-anticolocation.scores │ │ ├── group-colocation-failure.scores │ │ ├── group-dependents.scores │ │ ├── group-fail.scores │ │ ├── group-stop-ordering.scores │ │ ├── group-unmanaged-stopped.scores │ │ ├── group-unmanaged.scores │ │ ├── group1.scores │ │ ├── group10.scores │ │ ├── group11.scores │ │ ├── group13.scores │ │ ├── group14.scores │ │ ├── group15.scores │ │ ├── group2.scores │ │ ├── group3.scores │ │ ├── group4.scores │ │ ├── group5.scores │ │ ├── group6.scores │ │ ├── group7.scores │ │ ├── group8.scores │ │ ├── group9.scores │ │ ├── guest-host-not-fenceable.scores │ │ ├── guest-node-cleanup.scores │ │ ├── guest-node-host-dies.scores │ │ ├── history-1.scores │ │ ├── honor_stonith_rsc_order1.scores │ │ ├── honor_stonith_rsc_order2.scores │ │ ├── honor_stonith_rsc_order3.scores │ │ ├── honor_stonith_rsc_order4.scores │ │ ├── ignore_stonith_rsc_order1.scores │ │ ├── ignore_stonith_rsc_order2.scores │ │ ├── ignore_stonith_rsc_order3.scores │ │ ├── ignore_stonith_rsc_order4.scores │ │ ├── inc0.scores │ │ ├── inc1.scores │ │ ├── inc10.scores │ │ ├── inc11.scores │ │ ├── inc12.scores │ │ ├── inc2.scores │ │ ├── inc3.scores │ │ ├── inc4.scores │ │ ├── inc5.scores │ │ ├── inc6.scores │ │ ├── inc7.scores │ │ ├── inc8.scores │ │ ├── inc9.scores │ │ ├── interleave-0.scores │ │ ├── interleave-1.scores │ │ ├── interleave-2.scores │ │ ├── interleave-3.scores │ │ ├── interleave-pseudo-stop.scores │ │ ├── interleave-restart.scores │ │ ├── interleave-stop.scores │ │ ├── intervals.scores │ │ ├── leftover-pending-monitor.scores │ │ ├── load-stopped-loop-2.scores │ │ ├── load-stopped-loop.scores │ │ ├── location-date-rules-1.scores │ │ ├── location-date-rules-2.scores │ │ ├── location-sets-templates.scores │ │ ├── managed-0.scores │ │ ├── managed-1.scores │ │ ├── managed-2.scores │ │ ├── migrate-1.scores │ │ ├── migrate-2.scores │ │ ├── migrate-3.scores │ │ ├── migrate-4.scores │ │ ├── migrate-5.scores │ │ ├── migrate-begin.scores │ │ ├── migrate-both-vms.scores │ │ ├── migrate-fail-2.scores │ │ ├── migrate-fail-3.scores │ │ ├── migrate-fail-4.scores │ │ ├── migrate-fail-5.scores │ │ ├── migrate-fail-6.scores │ │ ├── migrate-fail-7.scores │ │ ├── migrate-fail-8.scores │ │ ├── migrate-fail-9.scores │ │ ├── migrate-fencing.scores │ │ ├── migrate-partial-1.scores │ │ ├── migrate-partial-2.scores │ │ ├── migrate-partial-3.scores │ │ ├── migrate-partial-4.scores │ │ ├── migrate-shutdown.scores │ │ ├── migrate-start-complex.scores │ │ ├── migrate-start.scores │ │ ├── migrate-stop-complex.scores │ │ ├── migrate-stop-start-complex.scores │ │ ├── migrate-stop.scores │ │ ├── migrate-stop_start.scores │ │ ├── migrate-success.scores │ │ ├── migration-behind-migrating-remote.scores │ │ ├── migration-intermediary-cleaned.scores │ │ ├── migration-ping-pong.scores │ │ ├── minimal.scores │ │ ├── mon-rsc-1.scores │ │ ├── mon-rsc-2.scores │ │ ├── mon-rsc-3.scores │ │ ├── mon-rsc-4.scores │ │ ├── monitor-onfail-restart.scores │ │ ├── monitor-onfail-stop.scores │ │ ├── monitor-recovery.scores │ │ ├── multi1.scores │ │ ├── multiple-active-block-group.scores │ │ ├── multiple-monitor-one-failed.scores │ │ ├── multiply-active-stonith.scores │ │ ├── nested-remote-recovery.scores │ │ ├── no-promote-on-unrunnable-guest.scores │ │ ├── no_quorum_demote.scores │ │ ├── node-maintenance-1.scores │ │ ├── node-maintenance-2.scores │ │ ├── node-pending-timeout.scores │ │ ├── not-installed-agent.scores │ │ ├── not-installed-tools.scores │ │ ├── not-reschedule-unneeded-monitor.scores │ │ ├── notifs-for-unrunnable.scores │ │ ├── notify-0.scores │ │ ├── notify-1.scores │ │ ├── notify-2.scores │ │ ├── notify-3.scores │ │ ├── notify-behind-stopping-remote.scores │ │ ├── novell-239079.scores │ │ ├── novell-239082.scores │ │ ├── novell-239087.scores │ │ ├── novell-251689.scores │ │ ├── novell-252693-2.scores │ │ ├── novell-252693-3.scores │ │ ├── novell-252693.scores │ │ ├── nvpair-date-rules-1.scores │ │ ├── nvpair-id-ref.scores │ │ ├── obsolete-lrm-resource.scores │ │ ├── ocf_degraded-remap-ocf_ok.scores │ │ ├── ocf_degraded_promoted-remap-ocf_ok.scores │ │ ├── on-fail-ignore.scores │ │ ├── on_fail_demote1.scores │ │ ├── on_fail_demote2.scores │ │ ├── on_fail_demote3.scores │ │ ├── on_fail_demote4.scores │ │ ├── one-or-more-0.scores │ │ ├── one-or-more-1.scores │ │ ├── one-or-more-2.scores │ │ ├── one-or-more-3.scores │ │ ├── one-or-more-4.scores │ │ ├── one-or-more-5.scores │ │ ├── one-or-more-6.scores │ │ ├── one-or-more-7.scores │ │ ├── one-or-more-unrunnable-instances.scores │ │ ├── op-defaults-2.scores │ │ ├── op-defaults-3.scores │ │ ├── op-defaults.scores │ │ ├── order-clone.scores │ │ ├── order-expired-failure.scores │ │ ├── order-first-probes.scores │ │ ├── order-mandatory.scores │ │ ├── order-optional-keyword.scores │ │ ├── order-optional.scores │ │ ├── order-required.scores │ │ ├── order-serialize-set.scores │ │ ├── order-serialize.scores │ │ ├── order-sets.scores │ │ ├── order-wrong-kind.scores │ │ ├── order1.scores │ │ ├── order2.scores │ │ ├── order3.scores │ │ ├── order4.scores │ │ ├── order5.scores │ │ ├── order6.scores │ │ ├── order7.scores │ │ ├── order_constraint_stops_promoted.scores │ │ ├── order_constraint_stops_unpromoted.scores │ │ ├── ordered-set-basic-startup.scores │ │ ├── ordered-set-natural.scores │ │ ├── origin.scores │ │ ├── orphan-0.scores │ │ ├── orphan-1.scores │ │ ├── orphan-2.scores │ │ ├── params-0.scores │ │ ├── params-1.scores │ │ ├── params-2.scores │ │ ├── params-3.scores │ │ ├── params-4.scores │ │ ├── params-5.scores │ │ ├── params-6.scores │ │ ├── partial-live-migration-multiple-active.scores │ │ ├── partial-unmanaged-group.scores │ │ ├── pending-node-no-uname.scores │ │ ├── per-node-attrs.scores │ │ ├── per-op-failcount.scores │ │ ├── placement-capacity.scores │ │ ├── placement-location.scores │ │ ├── placement-priority.scores │ │ ├── placement-stickiness.scores │ │ ├── primitive-with-group-with-clone.scores │ │ ├── primitive-with-group-with-promoted.scores │ │ ├── primitive-with-unrunnable-group.scores │ │ ├── priority-fencing-delay.scores │ │ ├── probe-0.scores │ │ ├── probe-1.scores │ │ ├── probe-2.scores │ │ ├── probe-3.scores │ │ ├── probe-4.scores │ │ ├── probe-pending-node.scores │ │ ├── probe-target-of-failed-migrate_to-1.scores │ │ ├── probe-target-of-failed-migrate_to-2.scores │ │ ├── probe-timeout.scores │ │ ├── promotable-colocation-with-node-attribute.scores │ │ ├── promoted-0.scores │ │ ├── promoted-1.scores │ │ ├── promoted-10.scores │ │ ├── promoted-11.scores │ │ ├── promoted-12.scores │ │ ├── promoted-13.scores │ │ ├── promoted-2.scores │ │ ├── promoted-3.scores │ │ ├── promoted-4.scores │ │ ├── promoted-5.scores │ │ ├── promoted-6.scores │ │ ├── promoted-7.scores │ │ ├── promoted-8.scores │ │ ├── promoted-9.scores │ │ ├── promoted-allow-start.scores │ │ ├── promoted-asymmetrical-order.scores │ │ ├── promoted-colocation.scores │ │ ├── promoted-demote-2.scores │ │ ├── promoted-demote-block.scores │ │ ├── promoted-demote.scores │ │ ├── promoted-depend.scores │ │ ├── promoted-dependent-ban.scores │ │ ├── promoted-failed-demote-2.scores │ │ ├── promoted-failed-demote.scores │ │ ├── promoted-group.scores │ │ ├── promoted-move.scores │ │ ├── promoted-notify.scores │ │ ├── promoted-ordering.scores │ │ ├── promoted-partially-demoted-group.scores │ │ ├── promoted-probed-score.scores │ │ ├── promoted-promotion-constraint.scores │ │ ├── promoted-pseudo.scores │ │ ├── promoted-reattach.scores │ │ ├── promoted-role.scores │ │ ├── promoted-score-startup.scores │ │ ├── promoted-stop.scores │ │ ├── promoted-unmanaged-monitor.scores │ │ ├── promoted-with-blocked.scores │ │ ├── promoted_monitor_restart.scores │ │ ├── quorum-1.scores │ │ ├── quorum-2.scores │ │ ├── quorum-3.scores │ │ ├── quorum-4.scores │ │ ├── quorum-5.scores │ │ ├── quorum-6.scores │ │ ├── rebalance-unique-clones.scores │ │ ├── rec-node-1.scores │ │ ├── rec-node-10.scores │ │ ├── rec-node-11.scores │ │ ├── rec-node-12.scores │ │ ├── rec-node-13.scores │ │ ├── rec-node-14.scores │ │ ├── rec-node-15.scores │ │ ├── rec-node-2.scores │ │ ├── rec-node-3.scores │ │ ├── rec-node-4.scores │ │ ├── rec-node-5.scores │ │ ├── rec-node-6.scores │ │ ├── rec-node-7.scores │ │ ├── rec-node-8.scores │ │ ├── rec-node-9.scores │ │ ├── rec-rsc-0.scores │ │ ├── rec-rsc-1.scores │ │ ├── rec-rsc-2.scores │ │ ├── rec-rsc-3.scores │ │ ├── rec-rsc-4.scores │ │ ├── rec-rsc-5.scores │ │ ├── rec-rsc-6.scores │ │ ├── rec-rsc-7.scores │ │ ├── rec-rsc-8.scores │ │ ├── rec-rsc-9.scores │ │ ├── reload-becomes-restart.scores │ │ ├── remote-connection-shutdown.scores │ │ ├── remote-connection-unrecoverable.scores │ │ ├── remote-disable.scores │ │ ├── remote-fence-before-reconnect.scores │ │ ├── remote-fence-unclean-3.scores │ │ ├── remote-fence-unclean.scores │ │ ├── remote-fence-unclean2.scores │ │ ├── remote-move.scores │ │ ├── remote-orphaned.scores │ │ ├── remote-orphaned2.scores │ │ ├── remote-partial-migrate.scores │ │ ├── remote-partial-migrate2.scores │ │ ├── remote-probe-disable.scores │ │ ├── remote-reconnect-delay.scores │ │ ├── remote-recover-all.scores │ │ ├── remote-recover-connection.scores │ │ ├── remote-recover-fail.scores │ │ ├── remote-recover-no-resources.scores │ │ ├── remote-recover-unknown.scores │ │ ├── remote-recover.scores │ │ ├── remote-recovery.scores │ │ ├── remote-stale-node-entry.scores │ │ ├── remote-start-fail.scores │ │ ├── remote-startup-probes.scores │ │ ├── remote-startup.scores │ │ ├── remote-unclean2.scores │ │ ├── resource-discovery.scores │ │ ├── restart-with-extra-op-params.scores │ │ ├── route-remote-notify.scores │ │ ├── rsc-defaults-2.scores │ │ ├── rsc-defaults.scores │ │ ├── rsc-discovery-per-node.scores │ │ ├── rsc-maintenance.scores │ │ ├── rsc-sets-clone-1.scores │ │ ├── rsc-sets-clone.scores │ │ ├── rsc-sets-promoted.scores │ │ ├── rsc-sets-seq-false.scores │ │ ├── rsc-sets-seq-true.scores │ │ ├── rsc_dep1.scores │ │ ├── rsc_dep10.scores │ │ ├── rsc_dep2.scores │ │ ├── rsc_dep3.scores │ │ ├── rsc_dep4.scores │ │ ├── rsc_dep5.scores │ │ ├── rsc_dep7.scores │ │ ├── rsc_dep8.scores │ │ ├── rule-dbl-as-auto-number-match.scores │ │ ├── rule-dbl-as-auto-number-no-match.scores │ │ ├── rule-dbl-as-integer-match.scores │ │ ├── rule-dbl-as-integer-no-match.scores │ │ ├── rule-dbl-as-number-match.scores │ │ ├── rule-dbl-as-number-no-match.scores │ │ ├── rule-dbl-parse-fail-default-str-match.scores │ │ ├── rule-dbl-parse-fail-default-str-no-match.scores │ │ ├── rule-int-as-auto-integer-match.scores │ │ ├── rule-int-as-auto-integer-no-match.scores │ │ ├── rule-int-as-integer-match.scores │ │ ├── rule-int-as-integer-no-match.scores │ │ ├── rule-int-as-number-match.scores │ │ ├── rule-int-as-number-no-match.scores │ │ ├── rule-int-parse-fail-default-str-match.scores │ │ ├── rule-int-parse-fail-default-str-no-match.scores │ │ ├── shutdown-lock-expiration.scores │ │ ├── shutdown-lock.scores │ │ ├── shutdown-maintenance-node.scores │ │ ├── simple1.scores │ │ ├── simple11.scores │ │ ├── simple12.scores │ │ ├── simple2.scores │ │ ├── simple3.scores │ │ ├── simple4.scores │ │ ├── simple6.scores │ │ ├── simple7.scores │ │ ├── simple8.scores │ │ ├── site-specific-params.scores │ │ ├── standby.scores │ │ ├── start-then-stop-with-unfence.scores │ │ ├── stonith-0.scores │ │ ├── stonith-1.scores │ │ ├── stonith-2.scores │ │ ├── stonith-3.scores │ │ ├── stonith-4.scores │ │ ├── stop-all-resources.scores │ │ ├── stop-failure-no-fencing.scores │ │ ├── stop-failure-no-quorum.scores │ │ ├── stop-failure-with-fencing.scores │ │ ├── stop-unexpected-2.scores │ │ ├── stop-unexpected.scores │ │ ├── stopped-monitor-00.scores │ │ ├── stopped-monitor-01.scores │ │ ├── stopped-monitor-02.scores │ │ ├── stopped-monitor-03.scores │ │ ├── stopped-monitor-04.scores │ │ ├── stopped-monitor-05.scores │ │ ├── stopped-monitor-06.scores │ │ ├── stopped-monitor-07.scores │ │ ├── stopped-monitor-08.scores │ │ ├── stopped-monitor-09.scores │ │ ├── stopped-monitor-10.scores │ │ ├── stopped-monitor-11.scores │ │ ├── stopped-monitor-12.scores │ │ ├── stopped-monitor-20.scores │ │ ├── stopped-monitor-21.scores │ │ ├── stopped-monitor-22.scores │ │ ├── stopped-monitor-23.scores │ │ ├── stopped-monitor-24.scores │ │ ├── stopped-monitor-25.scores │ │ ├── stopped-monitor-26.scores │ │ ├── stopped-monitor-27.scores │ │ ├── stopped-monitor-30.scores │ │ ├── stopped-monitor-31.scores │ │ ├── suicide-needed-inquorate.scores │ │ ├── suicide-not-needed-initial-quorum.scores │ │ ├── suicide-not-needed-never-quorate.scores │ │ ├── suicide-not-needed-quorate.scores │ │ ├── systemhealth1.scores │ │ ├── systemhealth2.scores │ │ ├── systemhealth3.scores │ │ ├── systemhealthm1.scores │ │ ├── systemhealthm2.scores │ │ ├── systemhealthm3.scores │ │ ├── systemhealthn1.scores │ │ ├── systemhealthn2.scores │ │ ├── systemhealthn3.scores │ │ ├── systemhealtho1.scores │ │ ├── systemhealtho2.scores │ │ ├── systemhealtho3.scores │ │ ├── systemhealthp1.scores │ │ ├── systemhealthp2.scores │ │ ├── systemhealthp3.scores │ │ ├── tags-coloc-order-1.scores │ │ ├── tags-coloc-order-2.scores │ │ ├── tags-location.scores │ │ ├── tags-ticket.scores │ │ ├── target-0.scores │ │ ├── target-1.scores │ │ ├── target-2.scores │ │ ├── template-1.scores │ │ ├── template-2.scores │ │ ├── template-3.scores │ │ ├── template-clone-group.scores │ │ ├── template-clone-primitive.scores │ │ ├── template-coloc-1.scores │ │ ├── template-coloc-2.scores │ │ ├── template-coloc-3.scores │ │ ├── template-order-1.scores │ │ ├── template-order-2.scores │ │ ├── template-order-3.scores │ │ ├── template-rsc-sets-1.scores │ │ ├── template-rsc-sets-2.scores │ │ ├── template-rsc-sets-3.scores │ │ ├── template-rsc-sets-4.scores │ │ ├── template-ticket.scores │ │ ├── ticket-clone-1.scores │ │ ├── ticket-clone-10.scores │ │ ├── ticket-clone-11.scores │ │ ├── ticket-clone-12.scores │ │ ├── ticket-clone-13.scores │ │ ├── ticket-clone-14.scores │ │ ├── ticket-clone-15.scores │ │ ├── ticket-clone-16.scores │ │ ├── ticket-clone-17.scores │ │ ├── ticket-clone-18.scores │ │ ├── ticket-clone-19.scores │ │ ├── ticket-clone-2.scores │ │ ├── ticket-clone-20.scores │ │ ├── ticket-clone-21.scores │ │ ├── ticket-clone-22.scores │ │ ├── ticket-clone-23.scores │ │ ├── ticket-clone-24.scores │ │ ├── ticket-clone-3.scores │ │ ├── ticket-clone-4.scores │ │ ├── ticket-clone-5.scores │ │ ├── ticket-clone-6.scores │ │ ├── ticket-clone-7.scores │ │ ├── ticket-clone-8.scores │ │ ├── ticket-clone-9.scores │ │ ├── ticket-group-1.scores │ │ ├── ticket-group-10.scores │ │ ├── ticket-group-11.scores │ │ ├── ticket-group-12.scores │ │ ├── ticket-group-13.scores │ │ ├── ticket-group-14.scores │ │ ├── ticket-group-15.scores │ │ ├── ticket-group-16.scores │ │ ├── ticket-group-17.scores │ │ ├── ticket-group-18.scores │ │ ├── ticket-group-19.scores │ │ ├── ticket-group-2.scores │ │ ├── ticket-group-20.scores │ │ ├── ticket-group-21.scores │ │ ├── ticket-group-22.scores │ │ ├── ticket-group-23.scores │ │ ├── ticket-group-24.scores │ │ ├── ticket-group-3.scores │ │ ├── ticket-group-4.scores │ │ ├── ticket-group-5.scores │ │ ├── ticket-group-6.scores │ │ ├── ticket-group-7.scores │ │ ├── ticket-group-8.scores │ │ ├── ticket-group-9.scores │ │ ├── ticket-primitive-1.scores │ │ ├── ticket-primitive-10.scores │ │ ├── ticket-primitive-11.scores │ │ ├── ticket-primitive-12.scores │ │ ├── ticket-primitive-13.scores │ │ ├── ticket-primitive-14.scores │ │ ├── ticket-primitive-15.scores │ │ ├── ticket-primitive-16.scores │ │ ├── ticket-primitive-17.scores │ │ ├── ticket-primitive-18.scores │ │ ├── ticket-primitive-19.scores │ │ ├── ticket-primitive-2.scores │ │ ├── ticket-primitive-20.scores │ │ ├── ticket-primitive-21.scores │ │ ├── ticket-primitive-22.scores │ │ ├── ticket-primitive-23.scores │ │ ├── ticket-primitive-24.scores │ │ ├── ticket-primitive-3.scores │ │ ├── ticket-primitive-4.scores │ │ ├── ticket-primitive-5.scores │ │ ├── ticket-primitive-6.scores │ │ ├── ticket-primitive-7.scores │ │ ├── ticket-primitive-8.scores │ │ ├── ticket-primitive-9.scores │ │ ├── ticket-promoted-1.scores │ │ ├── ticket-promoted-10.scores │ │ ├── ticket-promoted-11.scores │ │ ├── ticket-promoted-12.scores │ │ ├── ticket-promoted-13.scores │ │ ├── ticket-promoted-14.scores │ │ ├── ticket-promoted-15.scores │ │ ├── ticket-promoted-16.scores │ │ ├── ticket-promoted-17.scores │ │ ├── ticket-promoted-18.scores │ │ ├── ticket-promoted-19.scores │ │ ├── ticket-promoted-2.scores │ │ ├── ticket-promoted-20.scores │ │ ├── ticket-promoted-21.scores │ │ ├── ticket-promoted-22.scores │ │ ├── ticket-promoted-23.scores │ │ ├── ticket-promoted-24.scores │ │ ├── ticket-promoted-3.scores │ │ ├── ticket-promoted-4.scores │ │ ├── ticket-promoted-5.scores │ │ ├── ticket-promoted-6.scores │ │ ├── ticket-promoted-7.scores │ │ ├── ticket-promoted-8.scores │ │ ├── ticket-promoted-9.scores │ │ ├── ticket-rsc-sets-1.scores │ │ ├── ticket-rsc-sets-10.scores │ │ ├── ticket-rsc-sets-11.scores │ │ ├── ticket-rsc-sets-12.scores │ │ ├── ticket-rsc-sets-13.scores │ │ ├── ticket-rsc-sets-14.scores │ │ ├── ticket-rsc-sets-2.scores │ │ ├── ticket-rsc-sets-3.scores │ │ ├── ticket-rsc-sets-4.scores │ │ ├── ticket-rsc-sets-5.scores │ │ ├── ticket-rsc-sets-6.scores │ │ ├── ticket-rsc-sets-7.scores │ │ ├── ticket-rsc-sets-8.scores │ │ ├── ticket-rsc-sets-9.scores │ │ ├── unfence-definition.scores │ │ ├── unfence-device.scores │ │ ├── unfence-parameters.scores │ │ ├── unfence-startup.scores │ │ ├── unmanaged-block-restart.scores │ │ ├── unmanaged-promoted.scores │ │ ├── unmanaged-stop-1.scores │ │ ├── unmanaged-stop-2.scores │ │ ├── unmanaged-stop-3.scores │ │ ├── unmanaged-stop-4.scores │ │ ├── unrunnable-1.scores │ │ ├── unrunnable-2.scores │ │ ├── use-after-free-merge.scores │ │ ├── utilization-check-allowed-nodes.scores │ │ ├── utilization-complex.scores │ │ ├── utilization-order1.scores │ │ ├── utilization-order2.scores │ │ ├── utilization-order3.scores │ │ ├── utilization-order4.scores │ │ ├── utilization-shuffle.scores │ │ ├── utilization.scores │ │ ├── value-source.scores │ │ ├── whitebox-asymmetric.scores │ │ ├── whitebox-fail1.scores │ │ ├── whitebox-fail2.scores │ │ ├── whitebox-fail3.scores │ │ ├── whitebox-imply-stop-on-fence.scores │ │ ├── whitebox-migrate1.scores │ │ ├── whitebox-move.scores │ │ ├── whitebox-ms-ordering-move.scores │ │ ├── whitebox-ms-ordering.scores │ │ ├── whitebox-nested-group.scores │ │ ├── whitebox-orphan-ms.scores │ │ ├── whitebox-orphaned.scores │ │ ├── whitebox-start.scores │ │ ├── whitebox-stop.scores │ │ ├── whitebox-unexpectedly-running.scores │ │ └── year-2038.scores │ ├── stderr │ │ ├── Makefile.am │ │ └── order-wrong-kind.stderr │ ├── summary │ │ ├── 1-a-then-bm-move-b.summary │ │ ├── 10-a-then-bm-b-move-a-clone.summary │ │ ├── 11-a-then-bm-b-move-a-clone-starting.summary │ │ ├── 1360.summary │ │ ├── 1484.summary │ │ ├── 1494.summary │ │ ├── 2-am-then-b-move-a.summary │ │ ├── 3-am-then-bm-both-migrate.summary │ │ ├── 4-am-then-bm-b-not-migratable.summary │ │ ├── 5-am-then-bm-a-not-migratable.summary │ │ ├── 594.summary │ │ ├── 6-migrate-group.summary │ │ ├── 662.summary │ │ ├── 696.summary │ │ ├── 7-migrate-group-one-unmigratable.summary │ │ ├── 726.summary │ │ ├── 735.summary │ │ ├── 764.summary │ │ ├── 797.summary │ │ ├── 8-am-then-bm-a-migrating-b-stopping.summary │ │ ├── 829.summary │ │ ├── 9-am-then-bm-b-migrating-a-stopping.summary │ │ ├── 994-2.summary │ │ ├── 994.summary │ │ ├── Makefile.am │ │ ├── a-demote-then-b-migrate.summary │ │ ├── a-promote-then-b-migrate.summary │ │ ├── allow-unhealthy-nodes.summary │ │ ├── anon-instance-pending.summary │ │ ├── anti-colocation-order.summary │ │ ├── anti-colocation-promoted.summary │ │ ├── anti-colocation-unpromoted.summary │ │ ├── asymmetric.summary │ │ ├── asymmetrical-order-move.summary │ │ ├── asymmetrical-order-restart.summary │ │ ├── attrs1.summary │ │ ├── attrs2.summary │ │ ├── attrs3.summary │ │ ├── attrs4.summary │ │ ├── attrs5.summary │ │ ├── attrs6.summary │ │ ├── attrs7.summary │ │ ├── attrs8.summary │ │ ├── balanced.summary │ │ ├── banned-group-inner-constraints.summary │ │ ├── base-score.summary │ │ ├── bnc-515172.summary │ │ ├── bug-1572-1.summary │ │ ├── bug-1572-2.summary │ │ ├── bug-1573.summary │ │ ├── bug-1685.summary │ │ ├── bug-1718.summary │ │ ├── bug-1765.summary │ │ ├── bug-1820-1.summary │ │ ├── bug-1820.summary │ │ ├── bug-1822.summary │ │ ├── bug-5014-A-start-B-start.summary │ │ ├── bug-5014-A-stop-B-started.summary │ │ ├── bug-5014-A-stopped-B-stopped.summary │ │ ├── bug-5014-CLONE-A-start-B-start.summary │ │ ├── bug-5014-CLONE-A-stop-B-started.summary │ │ ├── bug-5014-CthenAthenB-C-stopped.summary │ │ ├── bug-5014-GROUP-A-start-B-start.summary │ │ ├── bug-5014-GROUP-A-stopped-B-started.summary │ │ ├── bug-5014-GROUP-A-stopped-B-stopped.summary │ │ ├── bug-5014-ordered-set-symmetrical-false.summary │ │ ├── bug-5014-ordered-set-symmetrical-true.summary │ │ ├── bug-5025-1.summary │ │ ├── bug-5025-2.summary │ │ ├── bug-5025-3.summary │ │ ├── bug-5025-4.summary │ │ ├── bug-5028-bottom.summary │ │ ├── bug-5028-detach.summary │ │ ├── bug-5028.summary │ │ ├── bug-5038.summary │ │ ├── bug-5059.summary │ │ ├── bug-5069-op-disabled.summary │ │ ├── bug-5069-op-enabled.summary │ │ ├── bug-5140-require-all-false.summary │ │ ├── bug-5143-ms-shuffle.summary │ │ ├── bug-5186-partial-migrate.summary │ │ ├── bug-cl-5168.summary │ │ ├── bug-cl-5170.summary │ │ ├── bug-cl-5212.summary │ │ ├── bug-cl-5213.summary │ │ ├── bug-cl-5219.summary │ │ ├── bug-cl-5247.summary │ │ ├── bug-lf-1852.summary │ │ ├── bug-lf-1920.summary │ │ ├── bug-lf-2106.summary │ │ ├── bug-lf-2153.summary │ │ ├── bug-lf-2160.summary │ │ ├── bug-lf-2171.summary │ │ ├── bug-lf-2213.summary │ │ ├── bug-lf-2317.summary │ │ ├── bug-lf-2358.summary │ │ ├── bug-lf-2361.summary │ │ ├── bug-lf-2422.summary │ │ ├── bug-lf-2435.summary │ │ ├── bug-lf-2445.summary │ │ ├── bug-lf-2453.summary │ │ ├── bug-lf-2474.summary │ │ ├── bug-lf-2493.summary │ │ ├── bug-lf-2508.summary │ │ ├── bug-lf-2544.summary │ │ ├── bug-lf-2551.summary │ │ ├── bug-lf-2574.summary │ │ ├── bug-lf-2581.summary │ │ ├── bug-lf-2606.summary │ │ ├── bug-lf-2619.summary │ │ ├── bug-n-385265-2.summary │ │ ├── bug-n-385265.summary │ │ ├── bug-n-387749.summary │ │ ├── bug-pm-11.summary │ │ ├── bug-pm-12.summary │ │ ├── bug-rh-1097457.summary │ │ ├── bug-rh-880249.summary │ │ ├── bug-suse-707150.summary │ │ ├── bundle-connection-with-container.summary │ │ ├── bundle-interleave-down.summary │ │ ├── bundle-interleave-promote.summary │ │ ├── bundle-interleave-start.summary │ │ ├── bundle-nested-colocation.summary │ │ ├── bundle-order-fencing.summary │ │ ├── bundle-order-partial-start-2.summary │ │ ├── bundle-order-partial-start.summary │ │ ├── bundle-order-partial-stop.summary │ │ ├── bundle-order-partial.summary │ │ ├── bundle-order-startup-clone-2.summary │ │ ├── bundle-order-startup-clone.summary │ │ ├── bundle-order-startup.summary │ │ ├── bundle-order-stop-clone.summary │ │ ├── bundle-order-stop-on-remote.summary │ │ ├── bundle-order-stop.summary │ │ ├── bundle-probe-order-1.summary │ │ ├── bundle-probe-order-2.summary │ │ ├── bundle-probe-order-3.summary │ │ ├── bundle-probe-remotes.summary │ │ ├── bundle-promoted-anticolocation-1.summary │ │ ├── bundle-promoted-anticolocation-2.summary │ │ ├── bundle-promoted-anticolocation-3.summary │ │ ├── bundle-promoted-anticolocation-4.summary │ │ ├── bundle-promoted-anticolocation-5.summary │ │ ├── bundle-promoted-anticolocation-6.summary │ │ ├── bundle-promoted-colocation-1.summary │ │ ├── bundle-promoted-colocation-2.summary │ │ ├── bundle-promoted-colocation-3.summary │ │ ├── bundle-promoted-colocation-4.summary │ │ ├── bundle-promoted-colocation-5.summary │ │ ├── bundle-promoted-colocation-6.summary │ │ ├── bundle-promoted-location-1.summary │ │ ├── bundle-promoted-location-2.summary │ │ ├── bundle-promoted-location-3.summary │ │ ├── bundle-promoted-location-4.summary │ │ ├── bundle-promoted-location-5.summary │ │ ├── bundle-promoted-location-6.summary │ │ ├── bundle-replicas-change.summary │ │ ├── cancel-behind-moving-remote.summary │ │ ├── clbz5007-promotable-colocation.summary │ │ ├── clone-anon-dup.summary │ │ ├── clone-anon-failcount.summary │ │ ├── clone-anon-probe-1.summary │ │ ├── clone-anon-probe-2.summary │ │ ├── clone-fail-block-colocation.summary │ │ ├── clone-interleave-1.summary │ │ ├── clone-interleave-2.summary │ │ ├── clone-interleave-3.summary │ │ ├── clone-max-zero.summary │ │ ├── clone-no-shuffle.summary │ │ ├── clone-order-16instances.summary │ │ ├── clone-order-primitive.summary │ │ ├── clone-recover-no-shuffle-1.summary │ │ ├── clone-recover-no-shuffle-10.summary │ │ ├── clone-recover-no-shuffle-11.summary │ │ ├── clone-recover-no-shuffle-12.summary │ │ ├── clone-recover-no-shuffle-2.summary │ │ ├── clone-recover-no-shuffle-3.summary │ │ ├── clone-recover-no-shuffle-4.summary │ │ ├── clone-recover-no-shuffle-5.summary │ │ ├── clone-recover-no-shuffle-6.summary │ │ ├── clone-recover-no-shuffle-7.summary │ │ ├── clone-recover-no-shuffle-8.summary │ │ ├── clone-recover-no-shuffle-9.summary │ │ ├── clone-require-all-1.summary │ │ ├── clone-require-all-2.summary │ │ ├── clone-require-all-3.summary │ │ ├── clone-require-all-4.summary │ │ ├── clone-require-all-5.summary │ │ ├── clone-require-all-6.summary │ │ ├── clone-require-all-7.summary │ │ ├── clone-require-all-no-interleave-1.summary │ │ ├── clone-require-all-no-interleave-2.summary │ │ ├── clone-require-all-no-interleave-3.summary │ │ ├── clone-requires-quorum-recovery.summary │ │ ├── clone-requires-quorum.summary │ │ ├── clone_min_interleave_start_one.summary │ │ ├── clone_min_interleave_start_two.summary │ │ ├── clone_min_interleave_stop_one.summary │ │ ├── clone_min_interleave_stop_two.summary │ │ ├── clone_min_start_one.summary │ │ ├── clone_min_start_two.summary │ │ ├── clone_min_stop_all.summary │ │ ├── clone_min_stop_one.summary │ │ ├── clone_min_stop_two.summary │ │ ├── cloned-group-stop.summary │ │ ├── cloned-group.summary │ │ ├── cloned_start_one.summary │ │ ├── cloned_start_two.summary │ │ ├── cloned_stop_one.summary │ │ ├── cloned_stop_two.summary │ │ ├── cluster-specific-params.summary │ │ ├── colo_promoted_w_native.summary │ │ ├── colo_unpromoted_w_native.summary │ │ ├── coloc-attr.summary │ │ ├── coloc-clone-stays-active.summary │ │ ├── coloc-cloned-group-promoted-dependent1.summary │ │ ├── coloc-cloned-group-promoted-dependent2.summary │ │ ├── coloc-dependee-should-move.summary │ │ ├── coloc-dependee-should-stay.summary │ │ ├── coloc-group.summary │ │ ├── coloc-intra-set.summary │ │ ├── coloc-list.summary │ │ ├── coloc-loop.summary │ │ ├── coloc-many-one.summary │ │ ├── coloc-negative-group.summary │ │ ├── coloc-optional-promoted-dependent-moves-1.summary │ │ ├── coloc-optional-promoted-dependent-moves-2.summary │ │ ├── coloc-optional-promoted-dependent-stays-1.summary │ │ ├── coloc-optional-promoted-dependent-stays-2.summary │ │ ├── coloc-unpromoted-anti.summary │ │ ├── coloc-with-inner-group-member.summary │ │ ├── coloc_fp_logic.summary │ │ ├── colocate-primitive-with-clone.summary │ │ ├── colocate-unmanaged-group.summary │ │ ├── colocated-utilization-clone.summary │ │ ├── colocated-utilization-group.summary │ │ ├── colocated-utilization-primitive-1.summary │ │ ├── colocated-utilization-primitive-2.summary │ │ ├── colocation-influence.summary │ │ ├── colocation-priority-group.summary │ │ ├── colocation-vs-stickiness.summary │ │ ├── colocation_constraint_stops_promoted.summary │ │ ├── colocation_constraint_stops_unpromoted.summary │ │ ├── comments.summary │ │ ├── complex_enforce_colo.summary │ │ ├── concurrent-fencing.summary │ │ ├── container-1.summary │ │ ├── container-2.summary │ │ ├── container-3.summary │ │ ├── container-4.summary │ │ ├── container-group-1.summary │ │ ├── container-group-2.summary │ │ ├── container-group-3.summary │ │ ├── container-group-4.summary │ │ ├── container-is-remote-node.summary │ │ ├── date-1.summary │ │ ├── date-2.summary │ │ ├── date-3.summary │ │ ├── dc-fence-ordering.summary │ │ ├── enforce-colo1.summary │ │ ├── expire-non-blocked-failure.summary │ │ ├── expired-failed-probe-primitive.summary │ │ ├── expired-stop-1.summary │ │ ├── failcount-block.summary │ │ ├── failcount.summary │ │ ├── failed-demote-recovery-promoted.summary │ │ ├── failed-demote-recovery.summary │ │ ├── failed-probe-clone.summary │ │ ├── failed-probe-primitive.summary │ │ ├── failed-sticky-anticolocated-group.summary │ │ ├── failed-sticky-group.summary │ │ ├── force-anon-clone-max.summary │ │ ├── group-anticolocation-2.summary │ │ ├── group-anticolocation-3.summary │ │ ├── group-anticolocation-4.summary │ │ ├── group-anticolocation-5.summary │ │ ├── group-anticolocation.summary │ │ ├── group-colocation-failure.summary │ │ ├── group-dependents.summary │ │ ├── group-fail.summary │ │ ├── group-stop-ordering.summary │ │ ├── group-unmanaged-stopped.summary │ │ ├── group-unmanaged.summary │ │ ├── group1.summary │ │ ├── group10.summary │ │ ├── group11.summary │ │ ├── group13.summary │ │ ├── group14.summary │ │ ├── group15.summary │ │ ├── group2.summary │ │ ├── group3.summary │ │ ├── group4.summary │ │ ├── group5.summary │ │ ├── group6.summary │ │ ├── group7.summary │ │ ├── group8.summary │ │ ├── group9.summary │ │ ├── guest-host-not-fenceable.summary │ │ ├── guest-node-cleanup.summary │ │ ├── guest-node-host-dies.summary │ │ ├── history-1.summary │ │ ├── honor_stonith_rsc_order1.summary │ │ ├── honor_stonith_rsc_order2.summary │ │ ├── honor_stonith_rsc_order3.summary │ │ ├── honor_stonith_rsc_order4.summary │ │ ├── ignore_stonith_rsc_order1.summary │ │ ├── ignore_stonith_rsc_order2.summary │ │ ├── ignore_stonith_rsc_order3.summary │ │ ├── ignore_stonith_rsc_order4.summary │ │ ├── inc0.summary │ │ ├── inc1.summary │ │ ├── inc10.summary │ │ ├── inc11.summary │ │ ├── inc12.summary │ │ ├── inc2.summary │ │ ├── inc3.summary │ │ ├── inc4.summary │ │ ├── inc5.summary │ │ ├── inc6.summary │ │ ├── inc7.summary │ │ ├── inc8.summary │ │ ├── inc9.summary │ │ ├── interleave-0.summary │ │ ├── interleave-1.summary │ │ ├── interleave-2.summary │ │ ├── interleave-3.summary │ │ ├── interleave-pseudo-stop.summary │ │ ├── interleave-restart.summary │ │ ├── interleave-stop.summary │ │ ├── intervals.summary │ │ ├── leftover-pending-monitor.summary │ │ ├── load-stopped-loop-2.summary │ │ ├── load-stopped-loop.summary │ │ ├── location-date-rules-1.summary │ │ ├── location-date-rules-2.summary │ │ ├── location-sets-templates.summary │ │ ├── managed-0.summary │ │ ├── managed-1.summary │ │ ├── managed-2.summary │ │ ├── migrate-1.summary │ │ ├── migrate-2.summary │ │ ├── migrate-3.summary │ │ ├── migrate-4.summary │ │ ├── migrate-5.summary │ │ ├── migrate-begin.summary │ │ ├── migrate-both-vms.summary │ │ ├── migrate-fail-2.summary │ │ ├── migrate-fail-3.summary │ │ ├── migrate-fail-4.summary │ │ ├── migrate-fail-5.summary │ │ ├── migrate-fail-6.summary │ │ ├── migrate-fail-7.summary │ │ ├── migrate-fail-8.summary │ │ ├── migrate-fail-9.summary │ │ ├── migrate-fencing.summary │ │ ├── migrate-partial-1.summary │ │ ├── migrate-partial-2.summary │ │ ├── migrate-partial-3.summary │ │ ├── migrate-partial-4.summary │ │ ├── migrate-shutdown.summary │ │ ├── migrate-start-complex.summary │ │ ├── migrate-start.summary │ │ ├── migrate-stop-complex.summary │ │ ├── migrate-stop-start-complex.summary │ │ ├── migrate-stop.summary │ │ ├── migrate-stop_start.summary │ │ ├── migrate-success.summary │ │ ├── migration-behind-migrating-remote.summary │ │ ├── migration-intermediary-cleaned.summary │ │ ├── migration-ping-pong.summary │ │ ├── minimal.summary │ │ ├── mon-rsc-1.summary │ │ ├── mon-rsc-2.summary │ │ ├── mon-rsc-3.summary │ │ ├── mon-rsc-4.summary │ │ ├── monitor-onfail-restart.summary │ │ ├── monitor-onfail-stop.summary │ │ ├── monitor-recovery.summary │ │ ├── multi1.summary │ │ ├── multiple-active-block-group.summary │ │ ├── multiple-monitor-one-failed.summary │ │ ├── multiply-active-stonith.summary │ │ ├── nested-remote-recovery.summary │ │ ├── no-promote-on-unrunnable-guest.summary │ │ ├── no_quorum_demote.summary │ │ ├── node-maintenance-1.summary │ │ ├── node-maintenance-2.summary │ │ ├── node-pending-timeout.summary │ │ ├── not-installed-agent.summary │ │ ├── not-installed-tools.summary │ │ ├── not-reschedule-unneeded-monitor.summary │ │ ├── notifs-for-unrunnable.summary │ │ ├── notify-0.summary │ │ ├── notify-1.summary │ │ ├── notify-2.summary │ │ ├── notify-3.summary │ │ ├── notify-behind-stopping-remote.summary │ │ ├── novell-239079.summary │ │ ├── novell-239082.summary │ │ ├── novell-239087.summary │ │ ├── novell-251689.summary │ │ ├── novell-252693-2.summary │ │ ├── novell-252693-3.summary │ │ ├── novell-252693.summary │ │ ├── nvpair-date-rules-1.summary │ │ ├── nvpair-id-ref.summary │ │ ├── obsolete-lrm-resource.summary │ │ ├── ocf_degraded-remap-ocf_ok.summary │ │ ├── ocf_degraded_promoted-remap-ocf_ok.summary │ │ ├── on-fail-ignore.summary │ │ ├── on_fail_demote1.summary │ │ ├── on_fail_demote2.summary │ │ ├── on_fail_demote3.summary │ │ ├── on_fail_demote4.summary │ │ ├── one-or-more-0.summary │ │ ├── one-or-more-1.summary │ │ ├── one-or-more-2.summary │ │ ├── one-or-more-3.summary │ │ ├── one-or-more-4.summary │ │ ├── one-or-more-5.summary │ │ ├── one-or-more-6.summary │ │ ├── one-or-more-7.summary │ │ ├── one-or-more-unrunnable-instances.summary │ │ ├── op-defaults-2.summary │ │ ├── op-defaults-3.summary │ │ ├── op-defaults.summary │ │ ├── order-clone.summary │ │ ├── order-expired-failure.summary │ │ ├── order-first-probes.summary │ │ ├── order-mandatory.summary │ │ ├── order-optional-keyword.summary │ │ ├── order-optional.summary │ │ ├── order-required.summary │ │ ├── order-serialize-set.summary │ │ ├── order-serialize.summary │ │ ├── order-sets.summary │ │ ├── order-wrong-kind.summary │ │ ├── order1.summary │ │ ├── order2.summary │ │ ├── order3.summary │ │ ├── order4.summary │ │ ├── order5.summary │ │ ├── order6.summary │ │ ├── order7.summary │ │ ├── order_constraint_stops_promoted.summary │ │ ├── order_constraint_stops_unpromoted.summary │ │ ├── ordered-set-basic-startup.summary │ │ ├── ordered-set-natural.summary │ │ ├── origin.summary │ │ ├── orphan-0.summary │ │ ├── orphan-1.summary │ │ ├── orphan-2.summary │ │ ├── params-0.summary │ │ ├── params-1.summary │ │ ├── params-2.summary │ │ ├── params-3.summary │ │ ├── params-4.summary │ │ ├── params-5.summary │ │ ├── params-6.summary │ │ ├── partial-live-migration-multiple-active.summary │ │ ├── partial-unmanaged-group.summary │ │ ├── pending-node-no-uname.summary │ │ ├── per-node-attrs.summary │ │ ├── per-op-failcount.summary │ │ ├── placement-capacity.summary │ │ ├── placement-location.summary │ │ ├── placement-priority.summary │ │ ├── placement-stickiness.summary │ │ ├── primitive-with-group-with-clone.summary │ │ ├── primitive-with-group-with-promoted.summary │ │ ├── primitive-with-unrunnable-group.summary │ │ ├── priority-fencing-delay.summary │ │ ├── probe-0.summary │ │ ├── probe-1.summary │ │ ├── probe-2.summary │ │ ├── probe-3.summary │ │ ├── probe-4.summary │ │ ├── probe-pending-node.summary │ │ ├── probe-target-of-failed-migrate_to-1.summary │ │ ├── probe-target-of-failed-migrate_to-2.summary │ │ ├── probe-timeout.summary │ │ ├── promotable-colocation-with-node-attribute.summary │ │ ├── promoted-0.summary │ │ ├── promoted-1.summary │ │ ├── promoted-10.summary │ │ ├── promoted-11.summary │ │ ├── promoted-12.summary │ │ ├── promoted-13.summary │ │ ├── promoted-2.summary │ │ ├── promoted-3.summary │ │ ├── promoted-4.summary │ │ ├── promoted-5.summary │ │ ├── promoted-6.summary │ │ ├── promoted-7.summary │ │ ├── promoted-8.summary │ │ ├── promoted-9.summary │ │ ├── promoted-allow-start.summary │ │ ├── promoted-asymmetrical-order.summary │ │ ├── promoted-colocation.summary │ │ ├── promoted-demote-2.summary │ │ ├── promoted-demote-block.summary │ │ ├── promoted-demote.summary │ │ ├── promoted-depend.summary │ │ ├── promoted-dependent-ban.summary │ │ ├── promoted-failed-demote-2.summary │ │ ├── promoted-failed-demote.summary │ │ ├── promoted-group.summary │ │ ├── promoted-move.summary │ │ ├── promoted-notify.summary │ │ ├── promoted-ordering.summary │ │ ├── promoted-partially-demoted-group.summary │ │ ├── promoted-probed-score.summary │ │ ├── promoted-promotion-constraint.summary │ │ ├── promoted-pseudo.summary │ │ ├── promoted-reattach.summary │ │ ├── promoted-role.summary │ │ ├── promoted-score-startup.summary │ │ ├── promoted-stop.summary │ │ ├── promoted-unmanaged-monitor.summary │ │ ├── promoted-with-blocked.summary │ │ ├── promoted_monitor_restart.summary │ │ ├── quorum-1.summary │ │ ├── quorum-2.summary │ │ ├── quorum-3.summary │ │ ├── quorum-4.summary │ │ ├── quorum-5.summary │ │ ├── quorum-6.summary │ │ ├── rebalance-unique-clones.summary │ │ ├── rec-node-1.summary │ │ ├── rec-node-10.summary │ │ ├── rec-node-11.summary │ │ ├── rec-node-12.summary │ │ ├── rec-node-13.summary │ │ ├── rec-node-14.summary │ │ ├── rec-node-15.summary │ │ ├── rec-node-2.summary │ │ ├── rec-node-3.summary │ │ ├── rec-node-4.summary │ │ ├── rec-node-5.summary │ │ ├── rec-node-6.summary │ │ ├── rec-node-7.summary │ │ ├── rec-node-8.summary │ │ ├── rec-node-9.summary │ │ ├── rec-rsc-0.summary │ │ ├── rec-rsc-1.summary │ │ ├── rec-rsc-2.summary │ │ ├── rec-rsc-3.summary │ │ ├── rec-rsc-4.summary │ │ ├── rec-rsc-5.summary │ │ ├── rec-rsc-6.summary │ │ ├── rec-rsc-7.summary │ │ ├── rec-rsc-8.summary │ │ ├── rec-rsc-9.summary │ │ ├── reload-becomes-restart.summary │ │ ├── remote-connection-shutdown.summary │ │ ├── remote-connection-unrecoverable.summary │ │ ├── remote-disable.summary │ │ ├── remote-fence-before-reconnect.summary │ │ ├── remote-fence-unclean-3.summary │ │ ├── remote-fence-unclean.summary │ │ ├── remote-fence-unclean2.summary │ │ ├── remote-move.summary │ │ ├── remote-orphaned.summary │ │ ├── remote-orphaned2.summary │ │ ├── remote-partial-migrate.summary │ │ ├── remote-partial-migrate2.summary │ │ ├── remote-probe-disable.summary │ │ ├── remote-reconnect-delay.summary │ │ ├── remote-recover-all.summary │ │ ├── remote-recover-connection.summary │ │ ├── remote-recover-fail.summary │ │ ├── remote-recover-no-resources.summary │ │ ├── remote-recover-unknown.summary │ │ ├── remote-recover.summary │ │ ├── remote-recovery.summary │ │ ├── remote-stale-node-entry.summary │ │ ├── remote-start-fail.summary │ │ ├── remote-startup-probes.summary │ │ ├── remote-startup.summary │ │ ├── remote-unclean2.summary │ │ ├── resource-discovery.summary │ │ ├── restart-with-extra-op-params.summary │ │ ├── route-remote-notify.summary │ │ ├── rsc-defaults-2.summary │ │ ├── rsc-defaults.summary │ │ ├── rsc-discovery-per-node.summary │ │ ├── rsc-maintenance.summary │ │ ├── rsc-sets-clone-1.summary │ │ ├── rsc-sets-clone.summary │ │ ├── rsc-sets-promoted.summary │ │ ├── rsc-sets-seq-false.summary │ │ ├── rsc-sets-seq-true.summary │ │ ├── rsc_dep1.summary │ │ ├── rsc_dep10.summary │ │ ├── rsc_dep2.summary │ │ ├── rsc_dep3.summary │ │ ├── rsc_dep4.summary │ │ ├── rsc_dep5.summary │ │ ├── rsc_dep7.summary │ │ ├── rsc_dep8.summary │ │ ├── rule-dbl-as-auto-number-match.summary │ │ ├── rule-dbl-as-auto-number-no-match.summary │ │ ├── rule-dbl-as-integer-match.summary │ │ ├── rule-dbl-as-integer-no-match.summary │ │ ├── rule-dbl-as-number-match.summary │ │ ├── rule-dbl-as-number-no-match.summary │ │ ├── rule-dbl-parse-fail-default-str-match.summary │ │ ├── rule-dbl-parse-fail-default-str-no-match.summary │ │ ├── rule-int-as-auto-integer-match.summary │ │ ├── rule-int-as-auto-integer-no-match.summary │ │ ├── rule-int-as-integer-match.summary │ │ ├── rule-int-as-integer-no-match.summary │ │ ├── rule-int-as-number-match.summary │ │ ├── rule-int-as-number-no-match.summary │ │ ├── rule-int-parse-fail-default-str-match.summary │ │ ├── rule-int-parse-fail-default-str-no-match.summary │ │ ├── shutdown-lock-expiration.summary │ │ ├── shutdown-lock.summary │ │ ├── shutdown-maintenance-node.summary │ │ ├── simple1.summary │ │ ├── simple11.summary │ │ ├── simple12.summary │ │ ├── simple2.summary │ │ ├── simple3.summary │ │ ├── simple4.summary │ │ ├── simple6.summary │ │ ├── simple7.summary │ │ ├── simple8.summary │ │ ├── site-specific-params.summary │ │ ├── standby.summary │ │ ├── start-then-stop-with-unfence.summary │ │ ├── stonith-0.summary │ │ ├── stonith-1.summary │ │ ├── stonith-2.summary │ │ ├── stonith-3.summary │ │ ├── stonith-4.summary │ │ ├── stop-all-resources.summary │ │ ├── stop-failure-no-fencing.summary │ │ ├── stop-failure-no-quorum.summary │ │ ├── stop-failure-with-fencing.summary │ │ ├── stop-unexpected-2.summary │ │ ├── stop-unexpected.summary │ │ ├── stopped-monitor-00.summary │ │ ├── stopped-monitor-01.summary │ │ ├── stopped-monitor-02.summary │ │ ├── stopped-monitor-03.summary │ │ ├── stopped-monitor-04.summary │ │ ├── stopped-monitor-05.summary │ │ ├── stopped-monitor-06.summary │ │ ├── stopped-monitor-07.summary │ │ ├── stopped-monitor-08.summary │ │ ├── stopped-monitor-09.summary │ │ ├── stopped-monitor-10.summary │ │ ├── stopped-monitor-11.summary │ │ ├── stopped-monitor-12.summary │ │ ├── stopped-monitor-20.summary │ │ ├── stopped-monitor-21.summary │ │ ├── stopped-monitor-22.summary │ │ ├── stopped-monitor-23.summary │ │ ├── stopped-monitor-24.summary │ │ ├── stopped-monitor-25.summary │ │ ├── stopped-monitor-26.summary │ │ ├── stopped-monitor-27.summary │ │ ├── stopped-monitor-30.summary │ │ ├── stopped-monitor-31.summary │ │ ├── suicide-needed-inquorate.summary │ │ ├── suicide-not-needed-initial-quorum.summary │ │ ├── suicide-not-needed-never-quorate.summary │ │ ├── suicide-not-needed-quorate.summary │ │ ├── systemhealth1.summary │ │ ├── systemhealth2.summary │ │ ├── systemhealth3.summary │ │ ├── systemhealthm1.summary │ │ ├── systemhealthm2.summary │ │ ├── systemhealthm3.summary │ │ ├── systemhealthn1.summary │ │ ├── systemhealthn2.summary │ │ ├── systemhealthn3.summary │ │ ├── systemhealtho1.summary │ │ ├── systemhealtho2.summary │ │ ├── systemhealtho3.summary │ │ ├── systemhealthp1.summary │ │ ├── systemhealthp2.summary │ │ ├── systemhealthp3.summary │ │ ├── tags-coloc-order-1.summary │ │ ├── tags-coloc-order-2.summary │ │ ├── tags-location.summary │ │ ├── tags-ticket.summary │ │ ├── target-0.summary │ │ ├── target-1.summary │ │ ├── target-2.summary │ │ ├── template-1.summary │ │ ├── template-2.summary │ │ ├── template-3.summary │ │ ├── template-clone-group.summary │ │ ├── template-clone-primitive.summary │ │ ├── template-coloc-1.summary │ │ ├── template-coloc-2.summary │ │ ├── template-coloc-3.summary │ │ ├── template-order-1.summary │ │ ├── template-order-2.summary │ │ ├── template-order-3.summary │ │ ├── template-rsc-sets-1.summary │ │ ├── template-rsc-sets-2.summary │ │ ├── template-rsc-sets-3.summary │ │ ├── template-rsc-sets-4.summary │ │ ├── template-ticket.summary │ │ ├── ticket-clone-1.summary │ │ ├── ticket-clone-10.summary │ │ ├── ticket-clone-11.summary │ │ ├── ticket-clone-12.summary │ │ ├── ticket-clone-13.summary │ │ ├── ticket-clone-14.summary │ │ ├── ticket-clone-15.summary │ │ ├── ticket-clone-16.summary │ │ ├── ticket-clone-17.summary │ │ ├── ticket-clone-18.summary │ │ ├── ticket-clone-19.summary │ │ ├── ticket-clone-2.summary │ │ ├── ticket-clone-20.summary │ │ ├── ticket-clone-21.summary │ │ ├── ticket-clone-22.summary │ │ ├── ticket-clone-23.summary │ │ ├── ticket-clone-24.summary │ │ ├── ticket-clone-3.summary │ │ ├── ticket-clone-4.summary │ │ ├── ticket-clone-5.summary │ │ ├── ticket-clone-6.summary │ │ ├── ticket-clone-7.summary │ │ ├── ticket-clone-8.summary │ │ ├── ticket-clone-9.summary │ │ ├── ticket-group-1.summary │ │ ├── ticket-group-10.summary │ │ ├── ticket-group-11.summary │ │ ├── ticket-group-12.summary │ │ ├── ticket-group-13.summary │ │ ├── ticket-group-14.summary │ │ ├── ticket-group-15.summary │ │ ├── ticket-group-16.summary │ │ ├── ticket-group-17.summary │ │ ├── ticket-group-18.summary │ │ ├── ticket-group-19.summary │ │ ├── ticket-group-2.summary │ │ ├── ticket-group-20.summary │ │ ├── ticket-group-21.summary │ │ ├── ticket-group-22.summary │ │ ├── ticket-group-23.summary │ │ ├── ticket-group-24.summary │ │ ├── ticket-group-3.summary │ │ ├── ticket-group-4.summary │ │ ├── ticket-group-5.summary │ │ ├── ticket-group-6.summary │ │ ├── ticket-group-7.summary │ │ ├── ticket-group-8.summary │ │ ├── ticket-group-9.summary │ │ ├── ticket-primitive-1.summary │ │ ├── ticket-primitive-10.summary │ │ ├── ticket-primitive-11.summary │ │ ├── ticket-primitive-12.summary │ │ ├── ticket-primitive-13.summary │ │ ├── ticket-primitive-14.summary │ │ ├── ticket-primitive-15.summary │ │ ├── ticket-primitive-16.summary │ │ ├── ticket-primitive-17.summary │ │ ├── ticket-primitive-18.summary │ │ ├── ticket-primitive-19.summary │ │ ├── ticket-primitive-2.summary │ │ ├── ticket-primitive-20.summary │ │ ├── ticket-primitive-21.summary │ │ ├── ticket-primitive-22.summary │ │ ├── ticket-primitive-23.summary │ │ ├── ticket-primitive-24.summary │ │ ├── ticket-primitive-3.summary │ │ ├── ticket-primitive-4.summary │ │ ├── ticket-primitive-5.summary │ │ ├── ticket-primitive-6.summary │ │ ├── ticket-primitive-7.summary │ │ ├── ticket-primitive-8.summary │ │ ├── ticket-primitive-9.summary │ │ ├── ticket-promoted-1.summary │ │ ├── ticket-promoted-10.summary │ │ ├── ticket-promoted-11.summary │ │ ├── ticket-promoted-12.summary │ │ ├── ticket-promoted-13.summary │ │ ├── ticket-promoted-14.summary │ │ ├── ticket-promoted-15.summary │ │ ├── ticket-promoted-16.summary │ │ ├── ticket-promoted-17.summary │ │ ├── ticket-promoted-18.summary │ │ ├── ticket-promoted-19.summary │ │ ├── ticket-promoted-2.summary │ │ ├── ticket-promoted-20.summary │ │ ├── ticket-promoted-21.summary │ │ ├── ticket-promoted-22.summary │ │ ├── ticket-promoted-23.summary │ │ ├── ticket-promoted-24.summary │ │ ├── ticket-promoted-3.summary │ │ ├── ticket-promoted-4.summary │ │ ├── ticket-promoted-5.summary │ │ ├── ticket-promoted-6.summary │ │ ├── ticket-promoted-7.summary │ │ ├── ticket-promoted-8.summary │ │ ├── ticket-promoted-9.summary │ │ ├── ticket-rsc-sets-1.summary │ │ ├── ticket-rsc-sets-10.summary │ │ ├── ticket-rsc-sets-11.summary │ │ ├── ticket-rsc-sets-12.summary │ │ ├── ticket-rsc-sets-13.summary │ │ ├── ticket-rsc-sets-14.summary │ │ ├── ticket-rsc-sets-2.summary │ │ ├── ticket-rsc-sets-3.summary │ │ ├── ticket-rsc-sets-4.summary │ │ ├── ticket-rsc-sets-5.summary │ │ ├── ticket-rsc-sets-6.summary │ │ ├── ticket-rsc-sets-7.summary │ │ ├── ticket-rsc-sets-8.summary │ │ ├── ticket-rsc-sets-9.summary │ │ ├── unfence-definition.summary │ │ ├── unfence-device.summary │ │ ├── unfence-parameters.summary │ │ ├── unfence-startup.summary │ │ ├── unmanaged-block-restart.summary │ │ ├── unmanaged-promoted.summary │ │ ├── unmanaged-stop-1.summary │ │ ├── unmanaged-stop-2.summary │ │ ├── unmanaged-stop-3.summary │ │ ├── unmanaged-stop-4.summary │ │ ├── unrunnable-1.summary │ │ ├── unrunnable-2.summary │ │ ├── use-after-free-merge.summary │ │ ├── utilization-check-allowed-nodes.summary │ │ ├── utilization-complex.summary │ │ ├── utilization-order1.summary │ │ ├── utilization-order2.summary │ │ ├── utilization-order3.summary │ │ ├── utilization-order4.summary │ │ ├── utilization-shuffle.summary │ │ ├── utilization.summary │ │ ├── value-source.summary │ │ ├── whitebox-asymmetric.summary │ │ ├── whitebox-fail1.summary │ │ ├── whitebox-fail2.summary │ │ ├── whitebox-fail3.summary │ │ ├── whitebox-imply-stop-on-fence.summary │ │ ├── whitebox-migrate1.summary │ │ ├── whitebox-move.summary │ │ ├── whitebox-ms-ordering-move.summary │ │ ├── whitebox-ms-ordering.summary │ │ ├── whitebox-nested-group.summary │ │ ├── whitebox-orphan-ms.summary │ │ ├── whitebox-orphaned.summary │ │ ├── whitebox-start.summary │ │ ├── whitebox-stop.summary │ │ ├── whitebox-unexpectedly-running.summary │ │ └── year-2038.summary │ └── xml │ │ ├── 1-a-then-bm-move-b.xml │ │ ├── 10-a-then-bm-b-move-a-clone.xml │ │ ├── 11-a-then-bm-b-move-a-clone-starting.xml │ │ ├── 1360.xml │ │ ├── 1484.xml │ │ ├── 1494.xml │ │ ├── 2-am-then-b-move-a.xml │ │ ├── 3-am-then-bm-both-migrate.xml │ │ ├── 4-am-then-bm-b-not-migratable.xml │ │ ├── 5-am-then-bm-a-not-migratable.xml │ │ ├── 594.xml │ │ ├── 6-migrate-group.xml │ │ ├── 662.xml │ │ ├── 696.xml │ │ ├── 7-migrate-group-one-unmigratable.xml │ │ ├── 726.xml │ │ ├── 735.xml │ │ ├── 764.xml │ │ ├── 797.xml │ │ ├── 8-am-then-bm-a-migrating-b-stopping.xml │ │ ├── 829.xml │ │ ├── 9-am-then-bm-b-migrating-a-stopping.xml │ │ ├── 994-2.xml │ │ ├── 994.xml │ │ ├── Makefile.am │ │ ├── a-demote-then-b-migrate.xml │ │ ├── a-promote-then-b-migrate.xml │ │ ├── allow-unhealthy-nodes.xml │ │ ├── anon-instance-pending.xml │ │ ├── anti-colocation-order.xml │ │ ├── anti-colocation-promoted.xml │ │ ├── anti-colocation-unpromoted.xml │ │ ├── asymmetric.xml │ │ ├── asymmetrical-order-move.xml │ │ ├── asymmetrical-order-restart.xml │ │ ├── attrs1.xml │ │ ├── attrs2.xml │ │ ├── attrs3.xml │ │ ├── attrs4.xml │ │ ├── attrs5.xml │ │ ├── attrs6.xml │ │ ├── attrs7.xml │ │ ├── attrs8.xml │ │ ├── balanced.xml │ │ ├── banned-group-inner-constraints.xml │ │ ├── base-score.xml │ │ ├── bnc-515172.xml │ │ ├── bug-1572-1.xml │ │ ├── bug-1572-2.xml │ │ ├── bug-1573.xml │ │ ├── bug-1685.xml │ │ ├── bug-1718.xml │ │ ├── bug-1765.xml │ │ ├── bug-1820-1.xml │ │ ├── bug-1820.xml │ │ ├── bug-1822.xml │ │ ├── bug-5014-A-start-B-start.xml │ │ ├── bug-5014-A-stop-B-started.xml │ │ ├── bug-5014-A-stopped-B-stopped.xml │ │ ├── bug-5014-CLONE-A-start-B-start.xml │ │ ├── bug-5014-CLONE-A-stop-B-started.xml │ │ ├── bug-5014-CthenAthenB-C-stopped.xml │ │ ├── bug-5014-GROUP-A-start-B-start.xml │ │ ├── bug-5014-GROUP-A-stopped-B-started.xml │ │ ├── bug-5014-GROUP-A-stopped-B-stopped.xml │ │ ├── bug-5014-ordered-set-symmetrical-false.xml │ │ ├── bug-5014-ordered-set-symmetrical-true.xml │ │ ├── bug-5025-1.xml │ │ ├── bug-5025-2.xml │ │ ├── bug-5025-3.xml │ │ ├── bug-5025-4.xml │ │ ├── bug-5028-bottom.xml │ │ ├── bug-5028-detach.xml │ │ ├── bug-5028.xml │ │ ├── bug-5038.xml │ │ ├── bug-5059.xml │ │ ├── bug-5069-op-disabled.xml │ │ ├── bug-5069-op-enabled.xml │ │ ├── bug-5140-require-all-false.xml │ │ ├── bug-5143-ms-shuffle.xml │ │ ├── bug-5186-partial-migrate.xml │ │ ├── bug-cl-5168.xml │ │ ├── bug-cl-5170.xml │ │ ├── bug-cl-5212.xml │ │ ├── bug-cl-5213.xml │ │ ├── bug-cl-5219.xml │ │ ├── bug-cl-5247.xml │ │ ├── bug-lf-1852.xml │ │ ├── bug-lf-1920.xml │ │ ├── bug-lf-2106.xml │ │ ├── bug-lf-2153.xml │ │ ├── bug-lf-2160.xml │ │ ├── bug-lf-2171.xml │ │ ├── bug-lf-2213.xml │ │ ├── bug-lf-2317.xml │ │ ├── bug-lf-2358.xml │ │ ├── bug-lf-2361.xml │ │ ├── bug-lf-2422.xml │ │ ├── bug-lf-2435.xml │ │ ├── bug-lf-2445.xml │ │ ├── bug-lf-2453.xml │ │ ├── bug-lf-2474.xml │ │ ├── bug-lf-2493.xml │ │ ├── bug-lf-2508.xml │ │ ├── bug-lf-2544.xml │ │ ├── bug-lf-2551.xml │ │ ├── bug-lf-2574.xml │ │ ├── bug-lf-2581.xml │ │ ├── bug-lf-2606.xml │ │ ├── bug-lf-2619.xml │ │ ├── bug-n-385265-2.xml │ │ ├── bug-n-385265.xml │ │ ├── bug-n-387749.xml │ │ ├── bug-pm-11.xml │ │ ├── bug-pm-12.xml │ │ ├── bug-rh-1097457.xml │ │ ├── bug-rh-880249.xml │ │ ├── bug-suse-707150.xml │ │ ├── bundle-connection-with-container.xml │ │ ├── bundle-interleave-down.xml │ │ ├── bundle-interleave-promote.xml │ │ ├── bundle-interleave-start.xml │ │ ├── bundle-nested-colocation.xml │ │ ├── bundle-order-fencing.xml │ │ ├── bundle-order-partial-start-2.xml │ │ ├── bundle-order-partial-start.xml │ │ ├── bundle-order-partial-stop.xml │ │ ├── bundle-order-partial.xml │ │ ├── bundle-order-startup-clone-2.xml │ │ ├── bundle-order-startup-clone.xml │ │ ├── bundle-order-startup.xml │ │ ├── bundle-order-stop-clone.xml │ │ ├── bundle-order-stop-on-remote.xml │ │ ├── bundle-order-stop.xml │ │ ├── bundle-probe-order-1.xml │ │ ├── bundle-probe-order-2.xml │ │ ├── bundle-probe-order-3.xml │ │ ├── bundle-probe-remotes.xml │ │ ├── bundle-promoted-anticolocation-1.xml │ │ ├── bundle-promoted-anticolocation-2.xml │ │ ├── bundle-promoted-anticolocation-3.xml │ │ ├── bundle-promoted-anticolocation-4.xml │ │ ├── bundle-promoted-anticolocation-5.xml │ │ ├── bundle-promoted-anticolocation-6.xml │ │ ├── bundle-promoted-colocation-1.xml │ │ ├── bundle-promoted-colocation-2.xml │ │ ├── bundle-promoted-colocation-3.xml │ │ ├── bundle-promoted-colocation-4.xml │ │ ├── bundle-promoted-colocation-5.xml │ │ ├── bundle-promoted-colocation-6.xml │ │ ├── bundle-promoted-location-1.xml │ │ ├── bundle-promoted-location-2.xml │ │ ├── bundle-promoted-location-3.xml │ │ ├── bundle-promoted-location-4.xml │ │ ├── bundle-promoted-location-5.xml │ │ ├── bundle-promoted-location-6.xml │ │ ├── bundle-replicas-change.xml │ │ ├── cancel-behind-moving-remote.xml │ │ ├── clbz5007-promotable-colocation.xml │ │ ├── clone-anon-dup.xml │ │ ├── clone-anon-failcount.xml │ │ ├── clone-anon-probe-1.xml │ │ ├── clone-anon-probe-2.xml │ │ ├── clone-fail-block-colocation.xml │ │ ├── clone-interleave-1.xml │ │ ├── clone-interleave-2.xml │ │ ├── clone-interleave-3.xml │ │ ├── clone-max-zero.xml │ │ ├── clone-no-shuffle.xml │ │ ├── clone-order-16instances.xml │ │ ├── clone-order-primitive.xml │ │ ├── clone-recover-no-shuffle-1.xml │ │ ├── clone-recover-no-shuffle-10.xml │ │ ├── clone-recover-no-shuffle-11.xml │ │ ├── clone-recover-no-shuffle-12.xml │ │ ├── clone-recover-no-shuffle-2.xml │ │ ├── clone-recover-no-shuffle-3.xml │ │ ├── clone-recover-no-shuffle-4.xml │ │ ├── clone-recover-no-shuffle-5.xml │ │ ├── clone-recover-no-shuffle-6.xml │ │ ├── clone-recover-no-shuffle-7.xml │ │ ├── clone-recover-no-shuffle-8.xml │ │ ├── clone-recover-no-shuffle-9.xml │ │ ├── clone-require-all-1.xml │ │ ├── clone-require-all-2.xml │ │ ├── clone-require-all-3.xml │ │ ├── clone-require-all-4.xml │ │ ├── clone-require-all-5.xml │ │ ├── clone-require-all-6.xml │ │ ├── clone-require-all-7.xml │ │ ├── clone-require-all-no-interleave-1.xml │ │ ├── clone-require-all-no-interleave-2.xml │ │ ├── clone-require-all-no-interleave-3.xml │ │ ├── clone-requires-quorum-recovery.xml │ │ ├── clone-requires-quorum.xml │ │ ├── clone_min_interleave_start_one.xml │ │ ├── clone_min_interleave_start_two.xml │ │ ├── clone_min_interleave_stop_one.xml │ │ ├── clone_min_interleave_stop_two.xml │ │ ├── clone_min_start_one.xml │ │ ├── clone_min_start_two.xml │ │ ├── clone_min_stop_all.xml │ │ ├── clone_min_stop_one.xml │ │ ├── clone_min_stop_two.xml │ │ ├── cloned-group-stop.xml │ │ ├── cloned-group.xml │ │ ├── cloned_start_one.xml │ │ ├── cloned_start_two.xml │ │ ├── cloned_stop_one.xml │ │ ├── cloned_stop_two.xml │ │ ├── cluster-specific-params.xml │ │ ├── colo_promoted_w_native.xml │ │ ├── colo_unpromoted_w_native.xml │ │ ├── coloc-attr.xml │ │ ├── coloc-clone-stays-active.xml │ │ ├── coloc-cloned-group-promoted-dependent1.xml │ │ ├── coloc-cloned-group-promoted-dependent2.xml │ │ ├── coloc-dependee-should-move.xml │ │ ├── coloc-dependee-should-stay.xml │ │ ├── coloc-group.xml │ │ ├── coloc-intra-set.xml │ │ ├── coloc-list.xml │ │ ├── coloc-loop.xml │ │ ├── coloc-many-one.xml │ │ ├── coloc-negative-group.xml │ │ ├── coloc-optional-promoted-dependent-moves-1.xml │ │ ├── coloc-optional-promoted-dependent-moves-2.xml │ │ ├── coloc-optional-promoted-dependent-stays-1.xml │ │ ├── coloc-optional-promoted-dependent-stays-2.xml │ │ ├── coloc-unpromoted-anti.xml │ │ ├── coloc-with-inner-group-member.xml │ │ ├── coloc_fp_logic.xml │ │ ├── colocate-primitive-with-clone.xml │ │ ├── colocate-unmanaged-group.xml │ │ ├── colocated-utilization-clone.xml │ │ ├── colocated-utilization-group.xml │ │ ├── colocated-utilization-primitive-1.xml │ │ ├── colocated-utilization-primitive-2.xml │ │ ├── colocation-influence.xml │ │ ├── colocation-priority-group.xml │ │ ├── colocation-vs-stickiness.xml │ │ ├── colocation_constraint_stops_promoted.xml │ │ ├── colocation_constraint_stops_unpromoted.xml │ │ ├── comments.xml │ │ ├── complex_enforce_colo.xml │ │ ├── concurrent-fencing.xml │ │ ├── container-1.xml │ │ ├── container-2.xml │ │ ├── container-3.xml │ │ ├── container-4.xml │ │ ├── container-group-1.xml │ │ ├── container-group-2.xml │ │ ├── container-group-3.xml │ │ ├── container-group-4.xml │ │ ├── container-is-remote-node.xml │ │ ├── date-1.xml │ │ ├── date-2.xml │ │ ├── date-3.xml │ │ ├── dc-fence-ordering.xml │ │ ├── enforce-colo1.xml │ │ ├── expire-non-blocked-failure.xml │ │ ├── expired-failed-probe-primitive.xml │ │ ├── expired-stop-1.xml │ │ ├── failcount-block.xml │ │ ├── failcount.xml │ │ ├── failed-demote-recovery-promoted.xml │ │ ├── failed-demote-recovery.xml │ │ ├── failed-probe-clone.xml │ │ ├── failed-probe-primitive.xml │ │ ├── failed-sticky-anticolocated-group.xml │ │ ├── failed-sticky-group.xml │ │ ├── force-anon-clone-max.xml │ │ ├── group-anticolocation-2.xml │ │ ├── group-anticolocation-3.xml │ │ ├── group-anticolocation-4.xml │ │ ├── group-anticolocation-5.xml │ │ ├── group-anticolocation.xml │ │ ├── group-colocation-failure.xml │ │ ├── group-dependents.xml │ │ ├── group-fail.xml │ │ ├── group-stop-ordering.xml │ │ ├── group-unmanaged-stopped.xml │ │ ├── group-unmanaged.xml │ │ ├── group1.xml │ │ ├── group10.xml │ │ ├── group11.xml │ │ ├── group13.xml │ │ ├── group14.xml │ │ ├── group15.xml │ │ ├── group2.xml │ │ ├── group3.xml │ │ ├── group4.xml │ │ ├── group5.xml │ │ ├── group6.xml │ │ ├── group7.xml │ │ ├── group8.xml │ │ ├── group9.xml │ │ ├── guest-host-not-fenceable.xml │ │ ├── guest-node-cleanup.xml │ │ ├── guest-node-host-dies.xml │ │ ├── history-1.xml │ │ ├── honor_stonith_rsc_order1.xml │ │ ├── honor_stonith_rsc_order2.xml │ │ ├── honor_stonith_rsc_order3.xml │ │ ├── honor_stonith_rsc_order4.xml │ │ ├── ignore_stonith_rsc_order1.xml │ │ ├── ignore_stonith_rsc_order2.xml │ │ ├── ignore_stonith_rsc_order3.xml │ │ ├── ignore_stonith_rsc_order4.xml │ │ ├── inc0.xml │ │ ├── inc1.xml │ │ ├── inc10.xml │ │ ├── inc11.xml │ │ ├── inc12.xml │ │ ├── inc2.xml │ │ ├── inc3.xml │ │ ├── inc4.xml │ │ ├── inc5.xml │ │ ├── inc6.xml │ │ ├── inc7.xml │ │ ├── inc8.xml │ │ ├── inc9.xml │ │ ├── interleave-0.xml │ │ ├── interleave-1.xml │ │ ├── interleave-2.xml │ │ ├── interleave-3.xml │ │ ├── interleave-pseudo-stop.xml │ │ ├── interleave-restart.xml │ │ ├── interleave-stop.xml │ │ ├── intervals.xml │ │ ├── leftover-pending-monitor.xml │ │ ├── load-stopped-loop-2.xml │ │ ├── load-stopped-loop.xml │ │ ├── location-date-rules-1.xml │ │ ├── location-date-rules-2.xml │ │ ├── location-sets-templates.xml │ │ ├── managed-0.xml │ │ ├── managed-1.xml │ │ ├── managed-2.xml │ │ ├── migrate-1.xml │ │ ├── migrate-2.xml │ │ ├── migrate-3.xml │ │ ├── migrate-4.xml │ │ ├── migrate-5.xml │ │ ├── migrate-begin.xml │ │ ├── migrate-both-vms.xml │ │ ├── migrate-fail-2.xml │ │ ├── migrate-fail-3.xml │ │ ├── migrate-fail-4.xml │ │ ├── migrate-fail-5.xml │ │ ├── migrate-fail-6.xml │ │ ├── migrate-fail-7.xml │ │ ├── migrate-fail-8.xml │ │ ├── migrate-fail-9.xml │ │ ├── migrate-fencing.xml │ │ ├── migrate-partial-1.xml │ │ ├── migrate-partial-2.xml │ │ ├── migrate-partial-3.xml │ │ ├── migrate-partial-4.xml │ │ ├── migrate-shutdown.xml │ │ ├── migrate-start-complex.xml │ │ ├── migrate-start.xml │ │ ├── migrate-stop-complex.xml │ │ ├── migrate-stop-start-complex.xml │ │ ├── migrate-stop.xml │ │ ├── migrate-stop_start.xml │ │ ├── migrate-success.xml │ │ ├── migration-behind-migrating-remote.xml │ │ ├── migration-intermediary-cleaned.xml │ │ ├── migration-ping-pong.xml │ │ ├── minimal.xml │ │ ├── mon-rsc-1.xml │ │ ├── mon-rsc-2.xml │ │ ├── mon-rsc-3.xml │ │ ├── mon-rsc-4.xml │ │ ├── monitor-onfail-restart.xml │ │ ├── monitor-onfail-stop.xml │ │ ├── monitor-recovery.xml │ │ ├── multi1.xml │ │ ├── multiple-active-block-group.xml │ │ ├── multiple-monitor-one-failed.xml │ │ ├── multiply-active-stonith.xml │ │ ├── nested-remote-recovery.xml │ │ ├── no-promote-on-unrunnable-guest.xml │ │ ├── no_quorum_demote.xml │ │ ├── node-maintenance-1.xml │ │ ├── node-maintenance-2.xml │ │ ├── node-pending-timeout.xml │ │ ├── not-installed-agent.xml │ │ ├── not-installed-tools.xml │ │ ├── not-reschedule-unneeded-monitor.xml │ │ ├── notifs-for-unrunnable.xml │ │ ├── notify-0.xml │ │ ├── notify-1.xml │ │ ├── notify-2.xml │ │ ├── notify-3.xml │ │ ├── notify-behind-stopping-remote.xml │ │ ├── novell-239079.xml │ │ ├── novell-239082.xml │ │ ├── novell-239087.xml │ │ ├── novell-251689.xml │ │ ├── novell-252693-2.xml │ │ ├── novell-252693-3.xml │ │ ├── novell-252693.xml │ │ ├── nvpair-date-rules-1.xml │ │ ├── nvpair-id-ref.xml │ │ ├── obsolete-lrm-resource.xml │ │ ├── ocf_degraded-remap-ocf_ok.xml │ │ ├── ocf_degraded_promoted-remap-ocf_ok.xml │ │ ├── on-fail-ignore.xml │ │ ├── on_fail_demote1.xml │ │ ├── on_fail_demote2.xml │ │ ├── on_fail_demote3.xml │ │ ├── on_fail_demote4.xml │ │ ├── one-or-more-0.xml │ │ ├── one-or-more-1.xml │ │ ├── one-or-more-2.xml │ │ ├── one-or-more-3.xml │ │ ├── one-or-more-4.xml │ │ ├── one-or-more-5.xml │ │ ├── one-or-more-6.xml │ │ ├── one-or-more-7.xml │ │ ├── one-or-more-unrunnable-instances.xml │ │ ├── op-defaults-2.xml │ │ ├── op-defaults-3.xml │ │ ├── op-defaults.xml │ │ ├── order-clone.xml │ │ ├── order-expired-failure.xml │ │ ├── order-first-probes.xml │ │ ├── order-mandatory.xml │ │ ├── order-optional-keyword.xml │ │ ├── order-optional.xml │ │ ├── order-required.xml │ │ ├── order-serialize-set.xml │ │ ├── order-serialize.xml │ │ ├── order-sets.xml │ │ ├── order-wrong-kind.xml │ │ ├── order1.xml │ │ ├── order2.xml │ │ ├── order3.xml │ │ ├── order4.xml │ │ ├── order5.xml │ │ ├── order6.xml │ │ ├── order7.xml │ │ ├── order_constraint_stops_promoted.xml │ │ ├── order_constraint_stops_unpromoted.xml │ │ ├── ordered-set-basic-startup.xml │ │ ├── ordered-set-natural.xml │ │ ├── origin.xml │ │ ├── orphan-0.xml │ │ ├── orphan-1.xml │ │ ├── orphan-2.xml │ │ ├── params-0.xml │ │ ├── params-1.xml │ │ ├── params-2.xml │ │ ├── params-3.xml │ │ ├── params-4.xml │ │ ├── params-5.xml │ │ ├── params-6.xml │ │ ├── partial-live-migration-multiple-active.xml │ │ ├── partial-unmanaged-group.xml │ │ ├── pending-node-no-uname.xml │ │ ├── per-node-attrs.xml │ │ ├── per-op-failcount.xml │ │ ├── placement-capacity.xml │ │ ├── placement-location.xml │ │ ├── placement-priority.xml │ │ ├── placement-stickiness.xml │ │ ├── primitive-with-group-with-clone.xml │ │ ├── primitive-with-group-with-promoted.xml │ │ ├── primitive-with-unrunnable-group.xml │ │ ├── priority-fencing-delay.xml │ │ ├── probe-0.xml │ │ ├── probe-1.xml │ │ ├── probe-2.xml │ │ ├── probe-3.xml │ │ ├── probe-4.xml │ │ ├── probe-pending-node.xml │ │ ├── probe-target-of-failed-migrate_to-1.xml │ │ ├── probe-target-of-failed-migrate_to-2.xml │ │ ├── probe-timeout.xml │ │ ├── promotable-colocation-with-node-attribute.xml │ │ ├── promoted-0.xml │ │ ├── promoted-1.xml │ │ ├── promoted-10.xml │ │ ├── promoted-11.xml │ │ ├── promoted-12.xml │ │ ├── promoted-13.xml │ │ ├── promoted-2.xml │ │ ├── promoted-3.xml │ │ ├── promoted-4.xml │ │ ├── promoted-5.xml │ │ ├── promoted-6.xml │ │ ├── promoted-7.xml │ │ ├── promoted-8.xml │ │ ├── promoted-9.xml │ │ ├── promoted-allow-start.xml │ │ ├── promoted-asymmetrical-order.xml │ │ ├── promoted-colocation.xml │ │ ├── promoted-demote-2.xml │ │ ├── promoted-demote-block.xml │ │ ├── promoted-demote.xml │ │ ├── promoted-depend.xml │ │ ├── promoted-dependent-ban.xml │ │ ├── promoted-failed-demote-2.xml │ │ ├── promoted-failed-demote.xml │ │ ├── promoted-group.xml │ │ ├── promoted-move.xml │ │ ├── promoted-notify.xml │ │ ├── promoted-ordering.xml │ │ ├── promoted-partially-demoted-group.xml │ │ ├── promoted-probed-score.xml │ │ ├── promoted-promotion-constraint.xml │ │ ├── promoted-pseudo.xml │ │ ├── promoted-reattach.xml │ │ ├── promoted-role.xml │ │ ├── promoted-score-startup.xml │ │ ├── promoted-stop.xml │ │ ├── promoted-unmanaged-monitor.xml │ │ ├── promoted-with-blocked.xml │ │ ├── promoted_monitor_restart.xml │ │ ├── quorum-1.xml │ │ ├── quorum-2.xml │ │ ├── quorum-3.xml │ │ ├── quorum-4.xml │ │ ├── quorum-5.xml │ │ ├── quorum-6.xml │ │ ├── rebalance-unique-clones.xml │ │ ├── rec-node-1.xml │ │ ├── rec-node-10.xml │ │ ├── rec-node-11.xml │ │ ├── rec-node-12.xml │ │ ├── rec-node-13.xml │ │ ├── rec-node-14.xml │ │ ├── rec-node-15.xml │ │ ├── rec-node-2.xml │ │ ├── rec-node-3.xml │ │ ├── rec-node-4.xml │ │ ├── rec-node-5.xml │ │ ├── rec-node-6.xml │ │ ├── rec-node-7.xml │ │ ├── rec-node-8.xml │ │ ├── rec-node-9.xml │ │ ├── rec-rsc-0.xml │ │ ├── rec-rsc-1.xml │ │ ├── rec-rsc-2.xml │ │ ├── rec-rsc-3.xml │ │ ├── rec-rsc-4.xml │ │ ├── rec-rsc-5.xml │ │ ├── rec-rsc-6.xml │ │ ├── rec-rsc-7.xml │ │ ├── rec-rsc-8.xml │ │ ├── rec-rsc-9.xml │ │ ├── reload-becomes-restart.xml │ │ ├── remote-connection-shutdown.xml │ │ ├── remote-connection-unrecoverable.xml │ │ ├── remote-disable.xml │ │ ├── remote-fence-before-reconnect.xml │ │ ├── remote-fence-unclean-3.xml │ │ ├── remote-fence-unclean.xml │ │ ├── remote-fence-unclean2.xml │ │ ├── remote-move.xml │ │ ├── remote-orphaned.xml │ │ ├── remote-orphaned2.xml │ │ ├── remote-partial-migrate.xml │ │ ├── remote-partial-migrate2.xml │ │ ├── remote-probe-disable.xml │ │ ├── remote-reconnect-delay.xml │ │ ├── remote-recover-all.xml │ │ ├── remote-recover-connection.xml │ │ ├── remote-recover-fail.xml │ │ ├── remote-recover-no-resources.xml │ │ ├── remote-recover-unknown.xml │ │ ├── remote-recover.xml │ │ ├── remote-recovery.xml │ │ ├── remote-stale-node-entry.xml │ │ ├── remote-start-fail.xml │ │ ├── remote-startup-probes.xml │ │ ├── remote-startup.xml │ │ ├── remote-unclean2.xml │ │ ├── resource-discovery.xml │ │ ├── restart-with-extra-op-params.xml │ │ ├── route-remote-notify.xml │ │ ├── rsc-defaults-2.xml │ │ ├── rsc-defaults.xml │ │ ├── rsc-discovery-per-node.xml │ │ ├── rsc-maintenance.xml │ │ ├── rsc-sets-clone-1.xml │ │ ├── rsc-sets-clone.xml │ │ ├── rsc-sets-promoted.xml │ │ ├── rsc-sets-seq-false.xml │ │ ├── rsc-sets-seq-true.xml │ │ ├── rsc_dep1.xml │ │ ├── rsc_dep10.xml │ │ ├── rsc_dep2.xml │ │ ├── rsc_dep3.xml │ │ ├── rsc_dep4.xml │ │ ├── rsc_dep5.xml │ │ ├── rsc_dep7.xml │ │ ├── rsc_dep8.xml │ │ ├── rule-dbl-as-auto-number-match.xml │ │ ├── rule-dbl-as-auto-number-no-match.xml │ │ ├── rule-dbl-as-integer-match.xml │ │ ├── rule-dbl-as-integer-no-match.xml │ │ ├── rule-dbl-as-number-match.xml │ │ ├── rule-dbl-as-number-no-match.xml │ │ ├── rule-dbl-parse-fail-default-str-match.xml │ │ ├── rule-dbl-parse-fail-default-str-no-match.xml │ │ ├── rule-int-as-auto-integer-match.xml │ │ ├── rule-int-as-auto-integer-no-match.xml │ │ ├── rule-int-as-integer-match.xml │ │ ├── rule-int-as-integer-no-match.xml │ │ ├── rule-int-as-number-match.xml │ │ ├── rule-int-as-number-no-match.xml │ │ ├── rule-int-parse-fail-default-str-match.xml │ │ ├── rule-int-parse-fail-default-str-no-match.xml │ │ ├── shutdown-lock-expiration.xml │ │ ├── shutdown-lock.xml │ │ ├── shutdown-maintenance-node.xml │ │ ├── simple1.xml │ │ ├── simple11.xml │ │ ├── simple12.xml │ │ ├── simple2.xml │ │ ├── simple3.xml │ │ ├── simple4.xml │ │ ├── simple6.xml │ │ ├── simple7.xml │ │ ├── simple8.xml │ │ ├── site-specific-params.xml │ │ ├── standby.xml │ │ ├── start-then-stop-with-unfence.xml │ │ ├── stonith-0.xml │ │ ├── stonith-1.xml │ │ ├── stonith-2.xml │ │ ├── stonith-3.xml │ │ ├── stonith-4.xml │ │ ├── stop-all-resources.xml │ │ ├── stop-failure-no-fencing.xml │ │ ├── stop-failure-no-quorum.xml │ │ ├── stop-failure-with-fencing.xml │ │ ├── stop-unexpected-2.xml │ │ ├── stop-unexpected.xml │ │ ├── stopped-monitor-00.xml │ │ ├── stopped-monitor-01.xml │ │ ├── stopped-monitor-02.xml │ │ ├── stopped-monitor-03.xml │ │ ├── stopped-monitor-04.xml │ │ ├── stopped-monitor-05.xml │ │ ├── stopped-monitor-06.xml │ │ ├── stopped-monitor-07.xml │ │ ├── stopped-monitor-08.xml │ │ ├── stopped-monitor-09.xml │ │ ├── stopped-monitor-10.xml │ │ ├── stopped-monitor-11.xml │ │ ├── stopped-monitor-12.xml │ │ ├── stopped-monitor-20.xml │ │ ├── stopped-monitor-21.xml │ │ ├── stopped-monitor-22.xml │ │ ├── stopped-monitor-23.xml │ │ ├── stopped-monitor-24.xml │ │ ├── stopped-monitor-25.xml │ │ ├── stopped-monitor-26.xml │ │ ├── stopped-monitor-27.xml │ │ ├── stopped-monitor-30.xml │ │ ├── stopped-monitor-31.xml │ │ ├── suicide-needed-inquorate.xml │ │ ├── suicide-not-needed-initial-quorum.xml │ │ ├── suicide-not-needed-never-quorate.xml │ │ ├── suicide-not-needed-quorate.xml │ │ ├── systemhealth1.xml │ │ ├── systemhealth2.xml │ │ ├── systemhealth3.xml │ │ ├── systemhealthm1.xml │ │ ├── systemhealthm2.xml │ │ ├── systemhealthm3.xml │ │ ├── systemhealthn1.xml │ │ ├── systemhealthn2.xml │ │ ├── systemhealthn3.xml │ │ ├── systemhealtho1.xml │ │ ├── systemhealtho2.xml │ │ ├── systemhealtho3.xml │ │ ├── systemhealthp1.xml │ │ ├── systemhealthp2.xml │ │ ├── systemhealthp3.xml │ │ ├── tags-coloc-order-1.xml │ │ ├── tags-coloc-order-2.xml │ │ ├── tags-location.xml │ │ ├── tags-ticket.xml │ │ ├── target-0.xml │ │ ├── target-1.xml │ │ ├── target-2.xml │ │ ├── template-1.xml │ │ ├── template-2.xml │ │ ├── template-3.xml │ │ ├── template-clone-group.xml │ │ ├── template-clone-primitive.xml │ │ ├── template-coloc-1.xml │ │ ├── template-coloc-2.xml │ │ ├── template-coloc-3.xml │ │ ├── template-order-1.xml │ │ ├── template-order-2.xml │ │ ├── template-order-3.xml │ │ ├── template-rsc-sets-1.xml │ │ ├── template-rsc-sets-2.xml │ │ ├── template-rsc-sets-3.xml │ │ ├── template-rsc-sets-4.xml │ │ ├── template-ticket.xml │ │ ├── ticket-clone-1.xml │ │ ├── ticket-clone-10.xml │ │ ├── ticket-clone-11.xml │ │ ├── ticket-clone-12.xml │ │ ├── ticket-clone-13.xml │ │ ├── ticket-clone-14.xml │ │ ├── ticket-clone-15.xml │ │ ├── ticket-clone-16.xml │ │ ├── ticket-clone-17.xml │ │ ├── ticket-clone-18.xml │ │ ├── ticket-clone-19.xml │ │ ├── ticket-clone-2.xml │ │ ├── ticket-clone-20.xml │ │ ├── ticket-clone-21.xml │ │ ├── ticket-clone-22.xml │ │ ├── ticket-clone-23.xml │ │ ├── ticket-clone-24.xml │ │ ├── ticket-clone-3.xml │ │ ├── ticket-clone-4.xml │ │ ├── ticket-clone-5.xml │ │ ├── ticket-clone-6.xml │ │ ├── ticket-clone-7.xml │ │ ├── ticket-clone-8.xml │ │ ├── ticket-clone-9.xml │ │ ├── ticket-group-1.xml │ │ ├── ticket-group-10.xml │ │ ├── ticket-group-11.xml │ │ ├── ticket-group-12.xml │ │ ├── ticket-group-13.xml │ │ ├── ticket-group-14.xml │ │ ├── ticket-group-15.xml │ │ ├── ticket-group-16.xml │ │ ├── ticket-group-17.xml │ │ ├── ticket-group-18.xml │ │ ├── ticket-group-19.xml │ │ ├── ticket-group-2.xml │ │ ├── ticket-group-20.xml │ │ ├── ticket-group-21.xml │ │ ├── ticket-group-22.xml │ │ ├── ticket-group-23.xml │ │ ├── ticket-group-24.xml │ │ ├── ticket-group-3.xml │ │ ├── ticket-group-4.xml │ │ ├── ticket-group-5.xml │ │ ├── ticket-group-6.xml │ │ ├── ticket-group-7.xml │ │ ├── ticket-group-8.xml │ │ ├── ticket-group-9.xml │ │ ├── ticket-primitive-1.xml │ │ ├── ticket-primitive-10.xml │ │ ├── ticket-primitive-11.xml │ │ ├── ticket-primitive-12.xml │ │ ├── ticket-primitive-13.xml │ │ ├── ticket-primitive-14.xml │ │ ├── ticket-primitive-15.xml │ │ ├── ticket-primitive-16.xml │ │ ├── ticket-primitive-17.xml │ │ ├── ticket-primitive-18.xml │ │ ├── ticket-primitive-19.xml │ │ ├── ticket-primitive-2.xml │ │ ├── ticket-primitive-20.xml │ │ ├── ticket-primitive-21.xml │ │ ├── ticket-primitive-22.xml │ │ ├── ticket-primitive-23.xml │ │ ├── ticket-primitive-24.xml │ │ ├── ticket-primitive-3.xml │ │ ├── ticket-primitive-4.xml │ │ ├── ticket-primitive-5.xml │ │ ├── ticket-primitive-6.xml │ │ ├── ticket-primitive-7.xml │ │ ├── ticket-primitive-8.xml │ │ ├── ticket-primitive-9.xml │ │ ├── ticket-promoted-1.xml │ │ ├── ticket-promoted-10.xml │ │ ├── ticket-promoted-11.xml │ │ ├── ticket-promoted-12.xml │ │ ├── ticket-promoted-13.xml │ │ ├── ticket-promoted-14.xml │ │ ├── ticket-promoted-15.xml │ │ ├── ticket-promoted-16.xml │ │ ├── ticket-promoted-17.xml │ │ ├── ticket-promoted-18.xml │ │ ├── ticket-promoted-19.xml │ │ ├── ticket-promoted-2.xml │ │ ├── ticket-promoted-20.xml │ │ ├── ticket-promoted-21.xml │ │ ├── ticket-promoted-22.xml │ │ ├── ticket-promoted-23.xml │ │ ├── ticket-promoted-24.xml │ │ ├── ticket-promoted-3.xml │ │ ├── ticket-promoted-4.xml │ │ ├── ticket-promoted-5.xml │ │ ├── ticket-promoted-6.xml │ │ ├── ticket-promoted-7.xml │ │ ├── ticket-promoted-8.xml │ │ ├── ticket-promoted-9.xml │ │ ├── ticket-rsc-sets-1.xml │ │ ├── ticket-rsc-sets-10.xml │ │ ├── ticket-rsc-sets-11.xml │ │ ├── ticket-rsc-sets-12.xml │ │ ├── ticket-rsc-sets-13.xml │ │ ├── ticket-rsc-sets-14.xml │ │ ├── ticket-rsc-sets-2.xml │ │ ├── ticket-rsc-sets-3.xml │ │ ├── ticket-rsc-sets-4.xml │ │ ├── ticket-rsc-sets-5.xml │ │ ├── ticket-rsc-sets-6.xml │ │ ├── ticket-rsc-sets-7.xml │ │ ├── ticket-rsc-sets-8.xml │ │ ├── ticket-rsc-sets-9.xml │ │ ├── unfence-definition.xml │ │ ├── unfence-device.xml │ │ ├── unfence-parameters.xml │ │ ├── unfence-startup.xml │ │ ├── unmanaged-block-restart.xml │ │ ├── unmanaged-promoted.xml │ │ ├── unmanaged-stop-1.xml │ │ ├── unmanaged-stop-2.xml │ │ ├── unmanaged-stop-3.xml │ │ ├── unmanaged-stop-4.xml │ │ ├── unrunnable-1.xml │ │ ├── unrunnable-2.xml │ │ ├── use-after-free-merge.xml │ │ ├── utilization-check-allowed-nodes.xml │ │ ├── utilization-complex.xml │ │ ├── utilization-order1.xml │ │ ├── utilization-order2.xml │ │ ├── utilization-order3.xml │ │ ├── utilization-order4.xml │ │ ├── utilization-shuffle.xml │ │ ├── utilization.xml │ │ ├── value-source.xml │ │ ├── whitebox-asymmetric.xml │ │ ├── whitebox-fail1.xml │ │ ├── whitebox-fail2.xml │ │ ├── whitebox-fail3.xml │ │ ├── whitebox-imply-stop-on-fence.xml │ │ ├── whitebox-migrate1.xml │ │ ├── whitebox-move.xml │ │ ├── whitebox-ms-ordering-move.xml │ │ ├── whitebox-ms-ordering.xml │ │ ├── whitebox-nested-group.xml │ │ ├── whitebox-orphan-ms.xml │ │ ├── whitebox-orphaned.xml │ │ ├── whitebox-start.xml │ │ ├── whitebox-stop.xml │ │ ├── whitebox-unexpectedly-running.xml │ │ └── year-2038.xml ├── schemas │ ├── test-2 │ │ ├── ref.err │ │ │ ├── 001-clu-props.ref.err-0 │ │ │ ├── 001-clu-props.ref.err-1 │ │ │ ├── 001-clu-props.ref.err-2 │ │ │ ├── 002-instance_atributes-rsc.ref.err-0 │ │ │ ├── 002-instance_atributes-rsc.ref.err-1 │ │ │ ├── 002-instance_atributes-rsc.ref.err-2 │ │ │ ├── 003-instance_atributes-rsc-nonbijective.ref.err-0 │ │ │ ├── 003-instance_atributes-rsc-nonbijective.ref.err-1 │ │ │ ├── 003-instance_atributes-rsc-nonbijective.ref.err-2 │ │ │ ├── 004-clu-props-can.ref.err-0 │ │ │ ├── 004-clu-props-can.ref.err-1 │ │ │ ├── 004-clu-props-can.ref.err-2 │ │ │ ├── 005-clu-props-cannot.ref.err-0 │ │ │ ├── 005-clu-props-cannot.ref.err-1 │ │ │ ├── 005-clu-props-cannot.ref.err-2 │ │ │ ├── 006-instance_atributes-rsc-nonbijective.ref.err-0 │ │ │ ├── 006-instance_atributes-rsc-nonbijective.ref.err-1 │ │ │ ├── 006-instance_atributes-rsc-nonbijective.ref.err-2 │ │ │ ├── 007-instance_atributes-rsc-nonbijective.ref.err-0 │ │ │ ├── 007-instance_atributes-rsc-nonbijective.ref.err-1 │ │ │ ├── 007-instance_atributes-rsc-nonbijective.ref.err-2 │ │ │ ├── 010-rsc_colocation-dropped-for-noop-sa.ref.err-0 │ │ │ ├── 010-rsc_colocation-dropped-for-noop-sa.ref.err-1 │ │ │ ├── 010-rsc_colocation-dropped-for-noop-sa.ref.err-2 │ │ │ ├── 020-rsc-requires-inline.ref.err-0 │ │ │ ├── 020-rsc-requires-inline.ref.err-1 │ │ │ ├── 020-rsc-requires-inline.ref.err-2 │ │ │ ├── 021-rsc-requires-nvpair.ref.err-0 │ │ │ ├── 021-rsc-requires-nvpair.ref.err-1 │ │ │ ├── 021-rsc-requires-nvpair.ref.err-2 │ │ │ ├── 022-rsc-requires-counterexamples.ref.err-0 │ │ │ ├── 022-rsc-requires-counterexamples.ref.err-1 │ │ │ ├── 022-rsc-requires-counterexamples.ref.err-2 │ │ │ ├── 023-rsc-requires-no-override.ref.err-0 │ │ │ ├── 023-rsc-requires-no-override.ref.err-1 │ │ │ ├── 023-rsc-requires-no-override.ref.err-2 │ │ │ ├── 024-rsc-requires-no-selfclash.ref.err-0 │ │ │ ├── 024-rsc-requires-no-selfclash.ref.err-1 │ │ │ ├── 024-rsc-requires-no-selfclash.ref.err-2 │ │ │ ├── 030-clu-props-plain-rename.ref.err-0 │ │ │ ├── 030-clu-props-plain-rename.ref.err-1 │ │ │ ├── 030-clu-props-plain-rename.ref.err-2 │ │ │ ├── 031-clu-props-drop.ref.err-0 │ │ │ ├── 031-clu-props-drop.ref.err-1 │ │ │ ├── 031-clu-props-drop.ref.err-2 │ │ │ ├── 032-clu-props-move.ref.err-0 │ │ │ ├── 032-clu-props-move.ref.err-1 │ │ │ ├── 032-clu-props-move.ref.err-2 │ │ │ ├── 033-clu-props-move-merge.ref.err-0 │ │ │ ├── 033-clu-props-move-merge.ref.err-1 │ │ │ ├── 033-clu-props-move-merge.ref.err-2 │ │ │ ├── 034-clu-props-move-redef.ref.err-0 │ │ │ ├── 034-clu-props-move-redef.ref.err-1 │ │ │ ├── 034-clu-props-move-redef.ref.err-2 │ │ │ ├── 040-nodes-rename-type.ref.err-0 │ │ │ ├── 040-nodes-rename-type.ref.err-1 │ │ │ ├── 040-nodes-rename-type.ref.err-2 │ │ │ ├── 050-rsc-attrs-instance-plain-rename.ref.err-0 │ │ │ ├── 050-rsc-attrs-instance-plain-rename.ref.err-1 │ │ │ ├── 050-rsc-attrs-instance-plain-rename.ref.err-2 │ │ │ ├── 051-rsc-attrs-instance-pcmk_arg_map.ref.err-0 │ │ │ ├── 051-rsc-attrs-instance-pcmk_arg_map.ref.err-1 │ │ │ ├── 051-rsc-attrs-instance-pcmk_arg_map.ref.err-2 │ │ │ ├── 060-rsc-attrs-meta-isolation.ref.err-0 │ │ │ ├── 060-rsc-attrs-meta-isolation.ref.err-1 │ │ │ ├── 060-rsc-attrs-meta-isolation.ref.err-2 │ │ │ ├── 061-rsc-attrs-meta-exchange.ref.err-0 │ │ │ ├── 061-rsc-attrs-meta-exchange.ref.err-1 │ │ │ ├── 061-rsc-attrs-meta-exchange.ref.err-2 │ │ │ ├── 070-rsc-op-attrs-inst-requires-start.ref.err-0 │ │ │ ├── 070-rsc-op-attrs-inst-requires-start.ref.err-1 │ │ │ ├── 070-rsc-op-attrs-inst-requires-start.ref.err-2 │ │ │ ├── 071-rsc-op-attrs-inst-requires-nonstart.ref.err-0 │ │ │ ├── 071-rsc-op-attrs-inst-requires-nonstart.ref.err-1 │ │ │ ├── 071-rsc-op-attrs-inst-requires-nonstart.ref.err-2 │ │ │ ├── 072-rsc-op-attrs-inst-requires-no-override.ref.err-0 │ │ │ ├── 072-rsc-op-attrs-inst-requires-no-override.ref.err-1 │ │ │ ├── 072-rsc-op-attrs-inst-requires-no-override.ref.err-2 │ │ │ ├── 073-rsc-op-attrs-inst-meta-meaning.ref.err-0 │ │ │ ├── 073-rsc-op-attrs-inst-meta-meaning.ref.err-1 │ │ │ └── 073-rsc-op-attrs-inst-meta-meaning.ref.err-2 │ │ ├── ref │ │ │ ├── 001-clu-props.ref-0 │ │ │ ├── 001-clu-props.ref-1 │ │ │ ├── 001-clu-props.ref-2 │ │ │ ├── 002-instance_atributes-rsc.ref-0 │ │ │ ├── 002-instance_atributes-rsc.ref-1 │ │ │ ├── 002-instance_atributes-rsc.ref-2 │ │ │ ├── 003-instance_atributes-rsc-nonbijective.ref-0 │ │ │ ├── 003-instance_atributes-rsc-nonbijective.ref-1 │ │ │ ├── 003-instance_atributes-rsc-nonbijective.ref-2 │ │ │ ├── 004-clu-props-can.ref-0 │ │ │ ├── 004-clu-props-can.ref-1 │ │ │ ├── 004-clu-props-can.ref-2 │ │ │ ├── 005-clu-props-cannot.ref-0 │ │ │ ├── 005-clu-props-cannot.ref-1 │ │ │ ├── 005-clu-props-cannot.ref-2 │ │ │ ├── 006-instance_atributes-rsc-nonbijective.ref-0 │ │ │ ├── 006-instance_atributes-rsc-nonbijective.ref-1 │ │ │ ├── 006-instance_atributes-rsc-nonbijective.ref-2 │ │ │ ├── 007-instance_atributes-rsc-nonbijective.ref-0 │ │ │ ├── 007-instance_atributes-rsc-nonbijective.ref-1 │ │ │ ├── 007-instance_atributes-rsc-nonbijective.ref-2 │ │ │ ├── 010-rsc_colocation-dropped-for-noop-sa.ref-0 │ │ │ ├── 010-rsc_colocation-dropped-for-noop-sa.ref-1 │ │ │ ├── 010-rsc_colocation-dropped-for-noop-sa.ref-2 │ │ │ ├── 020-rsc-requires-inline.ref-0 │ │ │ ├── 020-rsc-requires-inline.ref-1 │ │ │ ├── 020-rsc-requires-inline.ref-2 │ │ │ ├── 021-rsc-requires-nvpair.ref-0 │ │ │ ├── 021-rsc-requires-nvpair.ref-1 │ │ │ ├── 021-rsc-requires-nvpair.ref-2 │ │ │ ├── 022-rsc-requires-counterexamples.ref-0 │ │ │ ├── 022-rsc-requires-counterexamples.ref-1 │ │ │ ├── 022-rsc-requires-counterexamples.ref-2 │ │ │ ├── 023-rsc-requires-no-override.ref-0 │ │ │ ├── 023-rsc-requires-no-override.ref-1 │ │ │ ├── 023-rsc-requires-no-override.ref-2 │ │ │ ├── 024-rsc-requires-no-selfclash.ref-0 │ │ │ ├── 024-rsc-requires-no-selfclash.ref-1 │ │ │ ├── 024-rsc-requires-no-selfclash.ref-2 │ │ │ ├── 030-clu-props-plain-rename.ref-0 │ │ │ ├── 030-clu-props-plain-rename.ref-1 │ │ │ ├── 030-clu-props-plain-rename.ref-2 │ │ │ ├── 031-clu-props-drop.ref-0 │ │ │ ├── 031-clu-props-drop.ref-1 │ │ │ ├── 031-clu-props-drop.ref-2 │ │ │ ├── 032-clu-props-move.ref-0 │ │ │ ├── 032-clu-props-move.ref-1 │ │ │ ├── 032-clu-props-move.ref-2 │ │ │ ├── 033-clu-props-move-merge.ref-0 │ │ │ ├── 033-clu-props-move-merge.ref-1 │ │ │ ├── 033-clu-props-move-merge.ref-2 │ │ │ ├── 034-clu-props-move-redef.ref-0 │ │ │ ├── 034-clu-props-move-redef.ref-1 │ │ │ ├── 034-clu-props-move-redef.ref-2 │ │ │ ├── 040-nodes-rename-type.ref-0 │ │ │ ├── 040-nodes-rename-type.ref-1 │ │ │ ├── 040-nodes-rename-type.ref-2 │ │ │ ├── 050-rsc-attrs-instance-plain-rename.ref-0 │ │ │ ├── 050-rsc-attrs-instance-plain-rename.ref-1 │ │ │ ├── 050-rsc-attrs-instance-plain-rename.ref-2 │ │ │ ├── 051-rsc-attrs-instance-pcmk_arg_map.ref-0 │ │ │ ├── 051-rsc-attrs-instance-pcmk_arg_map.ref-1 │ │ │ ├── 051-rsc-attrs-instance-pcmk_arg_map.ref-2 │ │ │ ├── 060-rsc-attrs-meta-isolation.ref-0 │ │ │ ├── 060-rsc-attrs-meta-isolation.ref-1 │ │ │ ├── 060-rsc-attrs-meta-isolation.ref-2 │ │ │ ├── 061-rsc-attrs-meta-exchange.ref-0 │ │ │ ├── 061-rsc-attrs-meta-exchange.ref-1 │ │ │ ├── 061-rsc-attrs-meta-exchange.ref-2 │ │ │ ├── 070-rsc-op-attrs-inst-requires-start.ref-0 │ │ │ ├── 070-rsc-op-attrs-inst-requires-start.ref-1 │ │ │ ├── 070-rsc-op-attrs-inst-requires-start.ref-2 │ │ │ ├── 071-rsc-op-attrs-inst-requires-nonstart.ref-0 │ │ │ ├── 071-rsc-op-attrs-inst-requires-nonstart.ref-1 │ │ │ ├── 071-rsc-op-attrs-inst-requires-nonstart.ref-2 │ │ │ ├── 072-rsc-op-attrs-inst-requires-no-override.ref-0 │ │ │ ├── 072-rsc-op-attrs-inst-requires-no-override.ref-1 │ │ │ ├── 072-rsc-op-attrs-inst-requires-no-override.ref-2 │ │ │ ├── 073-rsc-op-attrs-inst-meta-meaning.ref-0 │ │ │ ├── 073-rsc-op-attrs-inst-meta-meaning.ref-1 │ │ │ └── 073-rsc-op-attrs-inst-meta-meaning.ref-2 │ │ └── xml │ │ │ ├── 001-clu-props.xml │ │ │ ├── 002-instance_atributes-rsc.xml │ │ │ ├── 003-instance_atributes-rsc-nonbijective.xml │ │ │ ├── 004-clu-props-can.xml │ │ │ ├── 005-clu-props-cannot.xml │ │ │ ├── 006-instance_atributes-rsc-nonbijective.xml │ │ │ ├── 007-instance_atributes-rsc-nonbijective.xml │ │ │ ├── 010-rsc_colocation-dropped-for-noop-sa.xml │ │ │ ├── 020-rsc-requires-inline.xml │ │ │ ├── 021-rsc-requires-nvpair.xml │ │ │ ├── 022-rsc-requires-counterexamples.xml │ │ │ ├── 023-rsc-requires-no-override.xml │ │ │ ├── 024-rsc-requires-no-selfclash.xml │ │ │ ├── 030-clu-props-plain-rename.xml │ │ │ ├── 031-clu-props-drop.xml │ │ │ ├── 032-clu-props-move.xml │ │ │ ├── 033-clu-props-move-merge.xml │ │ │ ├── 034-clu-props-move-redef.xml │ │ │ ├── 040-nodes-rename-type.xml │ │ │ ├── 050-rsc-attrs-instance-plain-rename.xml │ │ │ ├── 051-rsc-attrs-instance-pcmk_arg_map.xml │ │ │ ├── 060-rsc-attrs-meta-isolation.xml │ │ │ ├── 061-rsc-attrs-meta-exchange.xml │ │ │ ├── 070-rsc-op-attrs-inst-requires-start.xml │ │ │ ├── 071-rsc-op-attrs-inst-requires-nonstart.xml │ │ │ ├── 072-rsc-op-attrs-inst-requires-no-override.xml │ │ │ └── 073-rsc-op-attrs-inst-meta-meaning.xml │ └── test-3 │ │ ├── ref.err │ │ ├── acl-drop.ref.err-0 │ │ ├── acl-drop.ref.err-1 │ │ ├── acl-drop.ref.err-2 │ │ ├── acl-drop.ref.err-3 │ │ ├── acl-drop.ref.err-4 │ │ ├── acl-drop.ref.err-99 │ │ ├── bundle-promoted-max-legacy.ref.err-0 │ │ ├── bundle-promoted-max-legacy.ref.err-1 │ │ ├── bundle-promoted-max-legacy.ref.err-2 │ │ ├── bundle-promoted-max-legacy.ref.err-3 │ │ ├── bundle-promoted-max-legacy.ref.err-4 │ │ ├── bundle-promoted-max-legacy.ref.err-99 │ │ ├── can-fail.ref.err-0 │ │ ├── can-fail.ref.err-1 │ │ ├── can-fail.ref.err-2 │ │ ├── can-fail.ref.err-3 │ │ ├── can-fail.ref.err-4 │ │ ├── can-fail.ref.err-99 │ │ ├── crmd-finalization-timeout.ref.err-0 │ │ ├── crmd-finalization-timeout.ref.err-1 │ │ ├── crmd-finalization-timeout.ref.err-2 │ │ ├── crmd-finalization-timeout.ref.err-3 │ │ ├── crmd-finalization-timeout.ref.err-4 │ │ ├── crmd-finalization-timeout.ref.err-99 │ │ ├── crmd-integration-timeout.ref.err-0 │ │ ├── crmd-integration-timeout.ref.err-1 │ │ ├── crmd-integration-timeout.ref.err-2 │ │ ├── crmd-integration-timeout.ref.err-3 │ │ ├── crmd-integration-timeout.ref.err-4 │ │ ├── crmd-integration-timeout.ref.err-99 │ │ ├── crmd-transition-delay.ref.err-0 │ │ ├── crmd-transition-delay.ref.err-1 │ │ ├── crmd-transition-delay.ref.err-2 │ │ ├── crmd-transition-delay.ref.err-3 │ │ ├── crmd-transition-delay.ref.err-4 │ │ ├── crmd-transition-delay.ref.err-99 │ │ ├── duplicate-nvpairs-no-default.ref.err-0 │ │ ├── duplicate-nvpairs-no-default.ref.err-1 │ │ ├── duplicate-nvpairs-no-default.ref.err-2 │ │ ├── duplicate-nvpairs-no-default.ref.err-3 │ │ ├── duplicate-nvpairs-no-default.ref.err-4 │ │ ├── duplicate-nvpairs-no-default.ref.err-99 │ │ ├── duplicate-nvpairs-with-default.ref.err-0 │ │ ├── duplicate-nvpairs-with-default.ref.err-1 │ │ ├── duplicate-nvpairs-with-default.ref.err-2 │ │ ├── duplicate-nvpairs-with-default.ref.err-3 │ │ ├── duplicate-nvpairs-with-default.ref.err-4 │ │ ├── duplicate-nvpairs-with-default.ref.err-99 │ │ ├── duplicate-nvpairs.ref.err-0 │ │ ├── fencing-level.ref.err-0 │ │ ├── fencing-level.ref.err-1 │ │ ├── fencing-level.ref.err-2 │ │ ├── fencing-level.ref.err-3 │ │ ├── fencing-level.ref.err-4 │ │ ├── fencing-level.ref.err-99 │ │ ├── id-ref.ref.err-0 │ │ ├── id-ref.ref.err-1 │ │ ├── id-ref.ref.err-2 │ │ ├── id-ref.ref.err-3 │ │ ├── id-ref.ref.err-4 │ │ ├── id-ref.ref.err-99 │ │ ├── lifetime-1.ref.err-0 │ │ ├── lifetime-1.ref.err-1 │ │ ├── lifetime-1.ref.err-2 │ │ ├── lifetime-1.ref.err-3 │ │ ├── lifetime-1.ref.err-4 │ │ ├── lifetime-1.ref.err-99 │ │ ├── lifetime-2.ref.err-0 │ │ ├── lifetime-2.ref.err-1 │ │ ├── lifetime-2.ref.err-2 │ │ ├── lifetime-2.ref.err-3 │ │ ├── lifetime-2.ref.err-4 │ │ ├── lifetime-2.ref.err-99 │ │ ├── moon.ref.err-0 │ │ ├── moon.ref.err-1 │ │ ├── moon.ref.err-2 │ │ ├── moon.ref.err-3 │ │ ├── moon.ref.err-4 │ │ ├── moon.ref.err-99 │ │ ├── multiple-location-rules.ref.err-0 │ │ ├── multiple-location-rules.ref.err-1 │ │ ├── multiple-location-rules.ref.err-2 │ │ ├── multiple-location-rules.ref.err-3 │ │ ├── multiple-location-rules.ref.err-4 │ │ ├── multiple-location-rules.ref.err-99 │ │ ├── nagios.ref.err-0 │ │ ├── nagios.ref.err-1 │ │ ├── nagios.ref.err-2 │ │ ├── nagios.ref.err-3 │ │ ├── nagios.ref.err-4 │ │ ├── nagios.ref.err-99 │ │ ├── nvpair-no-value.ref.err-0 │ │ ├── nvpair-no-value.ref.err-1 │ │ ├── nvpair-no-value.ref.err-2 │ │ ├── nvpair-no-value.ref.err-3 │ │ ├── nvpair-no-value.ref.err-4 │ │ ├── nvpair-no-value.ref.err-99 │ │ ├── ping-node.ref.err-0 │ │ ├── ping-node.ref.err-1 │ │ ├── ping-node.ref.err-2 │ │ ├── ping-node.ref.err-3 │ │ ├── ping-node.ref.err-4 │ │ ├── ping-node.ref.err-99 │ │ ├── promotable-legacy.ref.err-0 │ │ ├── promotable-legacy.ref.err-1 │ │ ├── promotable-legacy.ref.err-2 │ │ ├── promotable-legacy.ref.err-3 │ │ ├── promotable-legacy.ref.err-4 │ │ ├── promotable-legacy.ref.err-99 │ │ ├── remove-after-stop.ref.err-0 │ │ ├── remove-after-stop.ref.err-1 │ │ ├── remove-after-stop.ref.err-2 │ │ ├── remove-after-stop.ref.err-3 │ │ ├── remove-after-stop.ref.err-4 │ │ ├── remove-after-stop.ref.err-99 │ │ ├── restart-type.ref.err-0 │ │ ├── restart-type.ref.err-1 │ │ ├── restart-type.ref.err-2 │ │ ├── restart-type.ref.err-3 │ │ ├── restart-type.ref.err-4 │ │ ├── restart-type.ref.err-99 │ │ ├── rkt.ref.err-0 │ │ ├── rkt.ref.err-1 │ │ ├── rkt.ref.err-2 │ │ ├── rkt.ref.err-3 │ │ ├── rkt.ref.err-4 │ │ ├── rkt.ref.err-99 │ │ ├── role-after-failure.ref.err-0 │ │ ├── role-after-failure.ref.err-1 │ │ ├── role-after-failure.ref.err-2 │ │ ├── role-after-failure.ref.err-3 │ │ ├── role-after-failure.ref.err-4 │ │ ├── role-after-failure.ref.err-99 │ │ ├── sort-nvsets.ref.err-0 │ │ ├── sort-nvsets.ref.err-1 │ │ ├── sort-nvsets.ref.err-2 │ │ ├── sort-nvsets.ref.err-3 │ │ ├── sort-nvsets.ref.err-4 │ │ ├── sort-nvsets.ref.err-99 │ │ ├── stonith-action-poweroff.ref.err-0 │ │ ├── stonith-action-poweroff.ref.err-1 │ │ ├── stonith-action-poweroff.ref.err-2 │ │ ├── stonith-action-poweroff.ref.err-3 │ │ ├── stonith-action-poweroff.ref.err-4 │ │ ├── stonith-action-poweroff.ref.err-99 │ │ ├── upstart.ref.err-0 │ │ ├── upstart.ref.err-1 │ │ ├── upstart.ref.err-2 │ │ ├── upstart.ref.err-3 │ │ ├── upstart.ref.err-4 │ │ └── upstart.ref.err-99 │ │ ├── ref │ │ ├── acl-drop.ref-0 │ │ ├── acl-drop.ref-1 │ │ ├── acl-drop.ref-2 │ │ ├── acl-drop.ref-3 │ │ ├── acl-drop.ref-4 │ │ ├── acl-drop.ref-99 │ │ ├── bundle-promoted-max-legacy.ref-0 │ │ ├── bundle-promoted-max-legacy.ref-1 │ │ ├── bundle-promoted-max-legacy.ref-2 │ │ ├── bundle-promoted-max-legacy.ref-3 │ │ ├── bundle-promoted-max-legacy.ref-4 │ │ ├── bundle-promoted-max-legacy.ref-99 │ │ ├── can-fail.ref-0 │ │ ├── can-fail.ref-1 │ │ ├── can-fail.ref-2 │ │ ├── can-fail.ref-3 │ │ ├── can-fail.ref-4 │ │ ├── can-fail.ref-99 │ │ ├── crmd-finalization-timeout.ref-0 │ │ ├── crmd-finalization-timeout.ref-1 │ │ ├── crmd-finalization-timeout.ref-2 │ │ ├── crmd-finalization-timeout.ref-3 │ │ ├── crmd-finalization-timeout.ref-4 │ │ ├── crmd-finalization-timeout.ref-99 │ │ ├── crmd-integration-timeout.ref-0 │ │ ├── crmd-integration-timeout.ref-1 │ │ ├── crmd-integration-timeout.ref-2 │ │ ├── crmd-integration-timeout.ref-3 │ │ ├── crmd-integration-timeout.ref-4 │ │ ├── crmd-integration-timeout.ref-99 │ │ ├── crmd-transition-delay.ref-0 │ │ ├── crmd-transition-delay.ref-1 │ │ ├── crmd-transition-delay.ref-2 │ │ ├── crmd-transition-delay.ref-3 │ │ ├── crmd-transition-delay.ref-4 │ │ ├── crmd-transition-delay.ref-99 │ │ ├── duplicate-nvpairs-no-default.ref-0 │ │ ├── duplicate-nvpairs-no-default.ref-1 │ │ ├── duplicate-nvpairs-no-default.ref-2 │ │ ├── duplicate-nvpairs-no-default.ref-3 │ │ ├── duplicate-nvpairs-no-default.ref-4 │ │ ├── duplicate-nvpairs-no-default.ref-99 │ │ ├── duplicate-nvpairs-with-default.ref-0 │ │ ├── duplicate-nvpairs-with-default.ref-1 │ │ ├── duplicate-nvpairs-with-default.ref-2 │ │ ├── duplicate-nvpairs-with-default.ref-3 │ │ ├── duplicate-nvpairs-with-default.ref-4 │ │ ├── duplicate-nvpairs-with-default.ref-99 │ │ ├── fencing-level.ref-0 │ │ ├── fencing-level.ref-1 │ │ ├── fencing-level.ref-2 │ │ ├── fencing-level.ref-3 │ │ ├── fencing-level.ref-4 │ │ ├── fencing-level.ref-99 │ │ ├── id-ref.ref-0 │ │ ├── id-ref.ref-1 │ │ ├── id-ref.ref-2 │ │ ├── id-ref.ref-3 │ │ ├── id-ref.ref-4 │ │ ├── id-ref.ref-99 │ │ ├── lifetime-1.ref-0 │ │ ├── lifetime-1.ref-1 │ │ ├── lifetime-1.ref-2 │ │ ├── lifetime-1.ref-3 │ │ ├── lifetime-1.ref-4 │ │ ├── lifetime-1.ref-99 │ │ ├── lifetime-2.ref-0 │ │ ├── lifetime-2.ref-1 │ │ ├── lifetime-2.ref-2 │ │ ├── lifetime-2.ref-3 │ │ ├── lifetime-2.ref-4 │ │ ├── lifetime-2.ref-99 │ │ ├── moon.ref-0 │ │ ├── moon.ref-1 │ │ ├── moon.ref-2 │ │ ├── moon.ref-3 │ │ ├── moon.ref-4 │ │ ├── moon.ref-99 │ │ ├── multiple-location-rules.ref-0 │ │ ├── multiple-location-rules.ref-1 │ │ ├── multiple-location-rules.ref-2 │ │ ├── multiple-location-rules.ref-3 │ │ ├── multiple-location-rules.ref-4 │ │ ├── multiple-location-rules.ref-99 │ │ ├── nagios.ref-0 │ │ ├── nagios.ref-1 │ │ ├── nagios.ref-2 │ │ ├── nagios.ref-3 │ │ ├── nagios.ref-4 │ │ ├── nagios.ref-99 │ │ ├── nvpair-no-value.ref-0 │ │ ├── nvpair-no-value.ref-1 │ │ ├── nvpair-no-value.ref-2 │ │ ├── nvpair-no-value.ref-3 │ │ ├── nvpair-no-value.ref-4 │ │ ├── nvpair-no-value.ref-99 │ │ ├── ping-node.ref-0 │ │ ├── ping-node.ref-1 │ │ ├── ping-node.ref-2 │ │ ├── ping-node.ref-3 │ │ ├── ping-node.ref-4 │ │ ├── ping-node.ref-99 │ │ ├── promotable-legacy.ref-0 │ │ ├── promotable-legacy.ref-1 │ │ ├── promotable-legacy.ref-2 │ │ ├── promotable-legacy.ref-3 │ │ ├── promotable-legacy.ref-4 │ │ ├── promotable-legacy.ref-99 │ │ ├── remove-after-stop.ref-0 │ │ ├── remove-after-stop.ref-1 │ │ ├── remove-after-stop.ref-2 │ │ ├── remove-after-stop.ref-3 │ │ ├── remove-after-stop.ref-4 │ │ ├── remove-after-stop.ref-99 │ │ ├── restart-type.ref-0 │ │ ├── restart-type.ref-1 │ │ ├── restart-type.ref-2 │ │ ├── restart-type.ref-3 │ │ ├── restart-type.ref-4 │ │ ├── restart-type.ref-99 │ │ ├── rkt.ref-0 │ │ ├── rkt.ref-1 │ │ ├── rkt.ref-2 │ │ ├── rkt.ref-3 │ │ ├── rkt.ref-4 │ │ ├── rkt.ref-99 │ │ ├── role-after-failure.ref-0 │ │ ├── role-after-failure.ref-1 │ │ ├── role-after-failure.ref-2 │ │ ├── role-after-failure.ref-3 │ │ ├── role-after-failure.ref-4 │ │ ├── role-after-failure.ref-99 │ │ ├── sort-nvsets.ref-0 │ │ ├── sort-nvsets.ref-1 │ │ ├── sort-nvsets.ref-2 │ │ ├── sort-nvsets.ref-3 │ │ ├── sort-nvsets.ref-4 │ │ ├── sort-nvsets.ref-99 │ │ ├── stonith-action-poweroff.ref-0 │ │ ├── stonith-action-poweroff.ref-1 │ │ ├── stonith-action-poweroff.ref-2 │ │ ├── stonith-action-poweroff.ref-3 │ │ ├── stonith-action-poweroff.ref-4 │ │ ├── stonith-action-poweroff.ref-99 │ │ ├── upstart.ref-0 │ │ ├── upstart.ref-1 │ │ ├── upstart.ref-2 │ │ ├── upstart.ref-3 │ │ ├── upstart.ref-4 │ │ └── upstart.ref-99 │ │ └── xml │ │ ├── acl-drop.xml │ │ ├── bundle-promoted-max-legacy.xml │ │ ├── can-fail.xml │ │ ├── crmd-finalization-timeout.xml │ │ ├── crmd-integration-timeout.xml │ │ ├── crmd-transition-delay.xml │ │ ├── duplicate-nvpairs-no-default.xml │ │ ├── duplicate-nvpairs-with-default.xml │ │ ├── fencing-level.xml │ │ ├── id-ref.xml │ │ ├── lifetime-1.xml │ │ ├── lifetime-2.xml │ │ ├── moon.xml │ │ ├── multiple-location-rules.xml │ │ ├── nagios.xml │ │ ├── nvpair-no-value.xml │ │ ├── ping-node.xml │ │ ├── promotable-legacy.xml │ │ ├── remove-after-stop.xml │ │ ├── restart-type.xml │ │ ├── rkt.xml │ │ ├── role-after-failure.xml │ │ ├── sort-nvsets.xml │ │ ├── stonith-action-poweroff.xml │ │ └── upstart.xml ├── support │ ├── LSBDummy.in │ ├── Makefile.am │ ├── cts-support.in │ ├── cts.conf │ ├── fence_dummy.in │ ├── pacemaker-cts-dummyd.in │ └── pacemaker-cts-dummyd@.service.in └── valgrind-pcmk.suppressions ├── daemons ├── Makefile.am ├── attrd │ ├── Makefile.am │ ├── attrd_alerts.c │ ├── attrd_attributes.c │ ├── attrd_cib.c │ ├── attrd_corosync.c │ ├── attrd_elections.c │ ├── attrd_ipc.c │ ├── attrd_messages.c │ ├── attrd_nodes.c │ ├── attrd_sync.c │ ├── attrd_utils.c │ ├── pacemaker-attrd.c │ └── pacemaker-attrd.h ├── based │ ├── Makefile.am │ ├── based_callbacks.c │ ├── based_io.c │ ├── based_messages.c │ ├── based_notify.c │ ├── based_operation.c │ ├── based_remote.c │ ├── based_transaction.c │ ├── based_transaction.h │ ├── cib.pam │ ├── pacemaker-based.c │ └── pacemaker-based.h ├── controld │ ├── Makefile.am │ ├── controld_alerts.c │ ├── controld_alerts.h │ ├── controld_attrd.c │ ├── controld_callbacks.c │ ├── controld_callbacks.h │ ├── controld_cib.c │ ├── controld_cib.h │ ├── controld_control.c │ ├── controld_corosync.c │ ├── controld_election.c │ ├── controld_execd.c │ ├── controld_execd_state.c │ ├── controld_fencing.c │ ├── controld_fencing.h │ ├── controld_fsa.c │ ├── controld_fsa.h │ ├── controld_globals.h │ ├── controld_join_client.c │ ├── controld_join_dc.c │ ├── controld_lrm.h │ ├── controld_matrix.c │ ├── controld_membership.c │ ├── controld_membership.h │ ├── controld_messages.c │ ├── controld_messages.h │ ├── controld_metadata.c │ ├── controld_metadata.h │ ├── controld_remote_ra.c │ ├── controld_remote_ra.h │ ├── controld_schedulerd.c │ ├── controld_te_actions.c │ ├── controld_te_callbacks.c │ ├── controld_te_events.c │ ├── controld_te_utils.c │ ├── controld_throttle.c │ ├── controld_throttle.h │ ├── controld_timers.c │ ├── controld_timers.h │ ├── controld_transition.c │ ├── controld_transition.h │ ├── controld_utils.c │ ├── controld_utils.h │ ├── pacemaker-controld.c │ └── pacemaker-controld.h ├── execd │ ├── Makefile.am │ ├── cts-exec-helper.c │ ├── execd_alerts.c │ ├── execd_commands.c │ ├── execd_messages.c │ ├── pacemaker-execd.c │ ├── pacemaker-execd.h │ ├── pacemaker-remoted.8.inc │ ├── pacemaker_remote.in │ ├── pacemaker_remote.service.in │ ├── remoted_pidone.c │ ├── remoted_proxy.c │ ├── remoted_schemas.c │ └── remoted_tls.c ├── fenced │ ├── Makefile.am │ ├── cts-fence-helper.c │ ├── fenced_cib.c │ ├── fenced_commands.c │ ├── fenced_history.c │ ├── fenced_remote.c │ ├── fenced_scheduler.c │ ├── pacemaker-fenced.c │ └── pacemaker-fenced.h ├── pacemakerd │ ├── Makefile.am │ ├── pacemaker.service.in │ ├── pacemakerd.8.inc │ ├── pacemakerd.c │ ├── pacemakerd.h │ ├── pcmkd_corosync.c │ ├── pcmkd_corosync.h │ ├── pcmkd_ipc.c │ ├── pcmkd_messages.c │ └── pcmkd_subdaemons.c └── schedulerd │ ├── Makefile.am │ ├── pacemaker-schedulerd.c │ ├── pacemaker-schedulerd.h │ ├── schedulerd_ipc.c │ └── schedulerd_messages.c ├── devel ├── Makefile.am ├── README └── gdbhelpers ├── doc ├── Doxyfile.in ├── Makefile.am ├── PCMK-MIB.txt ├── README.md ├── abi-check.in ├── clusterlabs-logo-55x55.png ├── security.txt └── sphinx │ ├── Clusters_from_Scratch │ ├── active-active.rst │ ├── active-passive.rst │ ├── ap-configuration.rst │ ├── ap-corosync-conf.rst │ ├── ap-reading.rst │ ├── apache.rst │ ├── cluster-setup.rst │ ├── fencing.rst │ ├── images │ │ ├── ConfigureVolumeGroup.png │ │ ├── ConsolePrompt.png │ │ ├── InstallationDestination.png │ │ ├── InstallationSummary.png │ │ ├── ManualPartitioning.png │ │ ├── NetworkAndHostName.png │ │ ├── RootPassword.png │ │ ├── SoftwareSelection.png │ │ ├── SummaryOfChanges.png │ │ ├── TimeAndDate.png │ │ ├── WelcomeToAlmaLinux.png │ │ └── WelcomeToCentos.png │ ├── index.rst │ ├── installation.rst │ ├── intro.rst │ ├── shared-storage.rst │ └── verification.rst │ ├── Makefile.am │ ├── Pacemaker_Administration │ ├── administrative.rst │ ├── agents.rst │ ├── alerts.rst │ ├── cluster.rst │ ├── configuring.rst │ ├── index.rst │ ├── installing.rst │ ├── intro.rst │ ├── moving.rst │ ├── options.rst │ ├── pcs-crmsh.rst │ ├── tools.rst │ ├── troubleshooting.rst │ └── upgrading.rst │ ├── Pacemaker_Development │ ├── c.rst │ ├── components.rst │ ├── documentation.rst │ ├── evolution.rst │ ├── faq.rst │ ├── general.rst │ ├── glossary.rst │ ├── helpers.rst │ ├── index.rst │ └── python.rst │ ├── Pacemaker_Explained │ ├── acls.rst │ ├── alerts.rst │ ├── ap-samples.rst │ ├── cluster-options.rst │ ├── collective.rst │ ├── constraints.rst │ ├── fencing.rst │ ├── images │ │ ├── resource-set.png │ │ ├── three-sets.png │ │ └── two-sets.png │ ├── index.rst │ ├── intro.rst │ ├── local-options.rst │ ├── multi-site-clusters.rst │ ├── nodes.rst │ ├── operations.rst │ ├── resources.rst │ ├── reusing-configuration.rst │ ├── rules.rst │ ├── status.rst │ └── utilization.rst │ ├── Pacemaker_Python_API │ ├── api.rst │ ├── index.rst │ ├── pacemaker.buildoptions.rst │ ├── pacemaker.exitstatus.rst │ └── pacemaker.rst │ ├── _static │ └── pacemaker.css │ ├── conf.py.in │ └── shared │ ├── images │ ├── Policy-Engine-big.dot │ ├── Policy-Engine-big.png │ ├── Policy-Engine-big.svg │ ├── Policy-Engine-small.dot │ ├── Policy-Engine-small.png │ ├── Policy-Engine-small.svg │ ├── pcmk-active-active.png │ ├── pcmk-active-active.svg │ ├── pcmk-active-passive.png │ ├── pcmk-active-passive.svg │ ├── pcmk-colocated-sets.png │ ├── pcmk-colocated-sets.svg │ ├── pcmk-internals.png │ ├── pcmk-internals.svg │ ├── pcmk-shared-failover.png │ └── pcmk-shared-failover.svg │ └── pacemaker-intro.rst ├── etc ├── Makefile.am ├── init.d │ └── pacemaker.in ├── logrotate.d │ └── pacemaker.in └── sysconfig │ ├── crm_mon │ └── pacemaker.in ├── include ├── Makefile.am ├── crm │ ├── Makefile.am │ ├── cib.h │ ├── cib │ │ ├── Makefile.am │ │ ├── cib_types.h │ │ ├── internal.h │ │ └── util.h │ ├── cib_compat.h │ ├── cluster.h │ ├── cluster │ │ ├── Makefile.am │ │ ├── compat.h │ │ ├── election_internal.h │ │ └── internal.h │ ├── common │ │ ├── Makefile.am │ │ ├── acl.h │ │ ├── acl_compat.h │ │ ├── acl_internal.h │ │ ├── action_relation_internal.h │ │ ├── actions.h │ │ ├── actions_internal.h │ │ ├── agents.h │ │ ├── agents_compat.h │ │ ├── agents_internal.h │ │ ├── alerts_internal.h │ │ ├── attrs_internal.h │ │ ├── bundles_internal.h │ │ ├── cib.h │ │ ├── cib_internal.h │ │ ├── clone_internal.h │ │ ├── cmdline_internal.h │ │ ├── digest_internal.h │ │ ├── failcounts_internal.h │ │ ├── group_internal.h │ │ ├── health_internal.h │ │ ├── history_internal.h │ │ ├── internal.h │ │ ├── io_internal.h │ │ ├── ipc.h │ │ ├── ipc_attrd_internal.h │ │ ├── ipc_client_compat.h │ │ ├── ipc_controld.h │ │ ├── ipc_internal.h │ │ ├── ipc_pacemakerd.h │ │ ├── ipc_schedulerd.h │ │ ├── iso8601.h │ │ ├── iso8601_internal.h │ │ ├── lists_internal.h │ │ ├── location_internal.h │ │ ├── logging.h │ │ ├── logging_compat.h │ │ ├── logging_internal.h │ │ ├── mainloop.h │ │ ├── messages_internal.h │ │ ├── nodes.h │ │ ├── nodes_internal.h │ │ ├── nvpair.h │ │ ├── nvpair_compat.h │ │ ├── nvpair_internal.h │ │ ├── options.h │ │ ├── options_compat.h │ │ ├── options_internal.h │ │ ├── output.h │ │ ├── output_internal.h │ │ ├── primitive_internal.h │ │ ├── probes.h │ │ ├── remote_internal.h │ │ ├── resources.h │ │ ├── resources_internal.h │ │ ├── results.h │ │ ├── results_compat.h │ │ ├── results_internal.h │ │ ├── roles.h │ │ ├── roles_internal.h │ │ ├── rules.h │ │ ├── rules_internal.h │ │ ├── scheduler.h │ │ ├── scheduler_internal.h │ │ ├── scheduler_types.h │ │ ├── schemas.h │ │ ├── schemas_internal.h │ │ ├── scores.h │ │ ├── scores_compat.h │ │ ├── scores_internal.h │ │ ├── servers_internal.h │ │ ├── strings.h │ │ ├── strings_compat.h │ │ ├── strings_internal.h │ │ ├── tickets_internal.h │ │ ├── tls_internal.h │ │ ├── unittest_internal.h │ │ ├── util.h │ │ ├── util_compat.h │ │ ├── xml.h │ │ ├── xml_comment_internal.h │ │ ├── xml_compat.h │ │ ├── xml_element.h │ │ ├── xml_element_compat.h │ │ ├── xml_element_internal.h │ │ ├── xml_idref_internal.h │ │ ├── xml_internal.h │ │ ├── xml_io.h │ │ ├── xml_io_compat.h │ │ ├── xml_io_internal.h │ │ ├── xml_names.h │ │ ├── xml_names_compat.h │ │ ├── xml_names_internal.h │ │ └── xpath_internal.h │ ├── crm.h │ ├── crm_compat.h │ ├── fencing │ │ ├── Makefile.am │ │ └── internal.h │ ├── lrmd.h │ ├── lrmd_events.h │ ├── lrmd_internal.h │ ├── msg_xml.h │ ├── msg_xml_compat.h │ ├── pengine │ │ ├── Makefile.am │ │ ├── common.h │ │ ├── common_compat.h │ │ ├── complex.h │ │ ├── internal.h │ │ ├── pe_types.h │ │ ├── pe_types_compat.h │ │ ├── remote_internal.h │ │ ├── rules.h │ │ ├── rules_compat.h │ │ ├── status.h │ │ └── status_compat.h │ ├── services.h │ ├── services_compat.h │ ├── services_internal.h │ └── stonith-ng.h ├── crm_config.h.in ├── crm_internal.h ├── doxygen.h ├── gettext.h ├── pacemaker-internal.h ├── pacemaker.h ├── pcmki │ ├── Makefile.am │ ├── pcmki_acl.h │ ├── pcmki_agents.h │ ├── pcmki_cluster_queries.h │ ├── pcmki_fence.h │ ├── pcmki_options.h │ ├── pcmki_output.h │ ├── pcmki_resource.h │ ├── pcmki_result_code.h │ ├── pcmki_rule.h │ ├── pcmki_scheduler.h │ ├── pcmki_simulate.h │ ├── pcmki_status.h │ ├── pcmki_ticket.h │ ├── pcmki_transition.h │ └── pcmki_verify.h └── portability.h ├── lib ├── Makefile.am ├── cib │ ├── Makefile.am │ ├── cib_attrs.c │ ├── cib_client.c │ ├── cib_file.c │ ├── cib_native.c │ ├── cib_ops.c │ ├── cib_remote.c │ ├── cib_utils.c │ └── fuzzers │ │ └── cib_file_fuzzer.c ├── cluster │ ├── Makefile.am │ ├── cluster.c │ ├── corosync.c │ ├── cpg.c │ ├── crmcluster_private.h │ ├── election.c │ ├── membership.c │ └── tests │ │ ├── Makefile.am │ │ ├── cluster │ │ ├── Makefile.am │ │ └── pcmk_cluster_set_destroy_fn_test.c │ │ └── cpg │ │ ├── Makefile.am │ │ ├── pcmk_cpg_set_confchg_fn_test.c │ │ └── pcmk_cpg_set_deliver_fn_test.c ├── common │ ├── Makefile.am │ ├── acl.c │ ├── action_relation.c │ ├── actions.c │ ├── agents.c │ ├── alerts.c │ ├── attrs.c │ ├── cib.c │ ├── cib_secrets.c │ ├── cmdline.c │ ├── crmcommon_private.h │ ├── digest.c │ ├── fuzzers │ │ ├── iso8601_fuzzer.c │ │ ├── scores_fuzzer.c │ │ └── strings_fuzzer.c │ ├── health.c │ ├── io.c │ ├── ipc_attrd.c │ ├── ipc_client.c │ ├── ipc_common.c │ ├── ipc_controld.c │ ├── ipc_pacemakerd.c │ ├── ipc_schedulerd.c │ ├── ipc_server.c │ ├── iso8601.c │ ├── lists.c │ ├── location.c │ ├── logging.c │ ├── mainloop.c │ ├── messages.c │ ├── mock.c │ ├── mock_private.h │ ├── nodes.c │ ├── nvpair.c │ ├── options.c │ ├── options_display.c │ ├── output.c │ ├── output_html.c │ ├── output_log.c │ ├── output_none.c │ ├── output_text.c │ ├── output_xml.c │ ├── patchset.c │ ├── patchset_display.c │ ├── pid.c │ ├── probes.c │ ├── procfs.c │ ├── remote.c │ ├── resources.c │ ├── results.c │ ├── roles.c │ ├── rules.c │ ├── scheduler.c │ ├── schemas.c │ ├── scores.c │ ├── servers.c │ ├── strings.c │ ├── tests │ │ ├── Makefile.am │ │ ├── acl │ │ │ ├── Makefile.am │ │ │ ├── pcmk__is_user_in_group_test.c │ │ │ ├── pcmk_acl_required_test.c │ │ │ └── xml_acl_denied_test.c │ │ ├── actions │ │ │ ├── Makefile.am │ │ │ └── parse_op_key_test.c │ │ ├── agents │ │ │ ├── Makefile.am │ │ │ ├── crm_generate_ra_key_test.c │ │ │ ├── crm_parse_agent_spec_test.c │ │ │ ├── pcmk__effective_rc_test.c │ │ │ ├── pcmk_get_ra_caps_test.c │ │ │ └── pcmk_stonith_param_test.c │ │ ├── cmdline │ │ │ ├── Makefile.am │ │ │ ├── pcmk__cmdline_preproc_test.c │ │ │ ├── pcmk__new_common_args_test.c │ │ │ └── pcmk__quote_cmdline_test.c │ │ ├── digest │ │ │ ├── Makefile.am │ │ │ └── pcmk__md5sum_test.c │ │ ├── flags │ │ │ ├── Makefile.am │ │ │ ├── pcmk__all_flags_set_test.c │ │ │ ├── pcmk__any_flags_set_test.c │ │ │ ├── pcmk__clear_flags_as_test.c │ │ │ └── pcmk__set_flags_as_test.c │ │ ├── health │ │ │ ├── Makefile.am │ │ │ ├── pcmk__parse_health_strategy_test.c │ │ │ └── pcmk__validate_health_strategy_test.c │ │ ├── io │ │ │ ├── Makefile.am │ │ │ ├── pcmk__full_path_test.c │ │ │ └── pcmk__get_tmpdir_test.c │ │ ├── iso8601 │ │ │ ├── Makefile.am │ │ │ ├── crm_time_add_days_test.c │ │ │ ├── crm_time_add_seconds_test.c │ │ │ ├── crm_time_add_years_test.c │ │ │ ├── crm_time_parse_duration_test.c │ │ │ ├── pcmk__add_time_from_xml_test.c │ │ │ ├── pcmk__readable_interval_test.c │ │ │ ├── pcmk__set_time_if_earlier_test.c │ │ │ └── pcmk__time_format_hr_test.c │ │ ├── lists │ │ │ ├── Makefile.am │ │ │ ├── pcmk__list_of_1_test.c │ │ │ ├── pcmk__list_of_multiple_test.c │ │ │ └── pcmk__subtract_lists_test.c │ │ ├── messages │ │ │ ├── Makefile.am │ │ │ └── pcmk__new_message_as_test.c │ │ ├── nodes │ │ │ ├── Makefile.am │ │ │ ├── pcmk__find_node_in_list_test.c │ │ │ ├── pcmk_cib_node_shutdown_test.c │ │ │ ├── pcmk_foreach_active_resource_test.c │ │ │ ├── pcmk_node_is_clean_test.c │ │ │ ├── pcmk_node_is_in_maintenance_test.c │ │ │ ├── pcmk_node_is_online_test.c │ │ │ ├── pcmk_node_is_pending_test.c │ │ │ └── pcmk_node_is_shutting_down_test.c │ │ ├── nvpair │ │ │ ├── Makefile.am │ │ │ ├── crm_meta_name_test.c │ │ │ ├── crm_meta_value_test.c │ │ │ ├── pcmk__cmp_nvpair_blocks_test.c │ │ │ ├── pcmk__scan_nvpair_test.c │ │ │ ├── pcmk__unpack_nvpair_block_test.c │ │ │ └── pcmk_unpack_nvpair_blocks_test.c │ │ ├── options │ │ │ ├── Makefile.am │ │ │ ├── pcmk__env_option_enabled_test.c │ │ │ ├── pcmk__env_option_test.c │ │ │ └── pcmk__set_env_option_test.c │ │ ├── output │ │ │ ├── Makefile.am │ │ │ ├── pcmk__call_message_test.c │ │ │ ├── pcmk__output_and_clear_error_test.c │ │ │ ├── pcmk__output_free_test.c │ │ │ ├── pcmk__output_new_test.c │ │ │ ├── pcmk__register_format_test.c │ │ │ ├── pcmk__register_formats_test.c │ │ │ ├── pcmk__register_message_test.c │ │ │ ├── pcmk__register_messages_test.c │ │ │ └── pcmk__unregister_formats_test.c │ │ ├── patchset │ │ │ ├── Makefile.am │ │ │ └── pcmk__cib_element_in_patchset_test.c │ │ ├── probes │ │ │ ├── Makefile.am │ │ │ ├── pcmk_is_probe_test.c │ │ │ ├── pcmk_xe_is_probe_test.c │ │ │ └── pcmk_xe_mask_probe_failure_test.c │ │ ├── procfs │ │ │ ├── Makefile.am │ │ │ ├── pcmk__procfs_has_pids_false_test.c │ │ │ ├── pcmk__procfs_has_pids_true_test.c │ │ │ └── pcmk__procfs_pid2path_test.c │ │ ├── resources │ │ │ ├── Makefile.am │ │ │ ├── pcmk_resource_id_test.c │ │ │ └── pcmk_resource_is_managed_test.c │ │ ├── results │ │ │ ├── Makefile.am │ │ │ └── pcmk__results_test.c │ │ ├── rules │ │ │ ├── Makefile.am │ │ │ ├── pcmk__cmp_by_type_test.c │ │ │ ├── pcmk__evaluate_attr_expression_test.c │ │ │ ├── pcmk__evaluate_condition_test.c │ │ │ ├── pcmk__evaluate_date_expression_test.c │ │ │ ├── pcmk__evaluate_date_spec_test.c │ │ │ ├── pcmk__evaluate_op_expression_test.c │ │ │ ├── pcmk__evaluate_rsc_expression_test.c │ │ │ ├── pcmk__parse_combine_test.c │ │ │ ├── pcmk__parse_comparison_test.c │ │ │ ├── pcmk__parse_source_test.c │ │ │ ├── pcmk__parse_type_test.c │ │ │ ├── pcmk__replace_submatches_test.c │ │ │ ├── pcmk__unpack_duration_test.c │ │ │ └── pcmk_evaluate_rule_test.c │ │ ├── scheduler │ │ │ ├── Makefile.am │ │ │ ├── pcmk__set_scheduler_defaults_test.c │ │ │ ├── pcmk__update_recheck_time_test.c │ │ │ ├── pcmk_get_dc_test.c │ │ │ ├── pcmk_get_no_quorum_policy_test.c │ │ │ ├── pcmk_has_quorum_test.c │ │ │ ├── pcmk_new_scheduler_test.c │ │ │ └── pcmk_set_scheduler_cib_test.c │ │ ├── schemas │ │ │ ├── Makefile.am │ │ │ ├── pcmk__build_schema_xml_node_test.c │ │ │ ├── pcmk__cmp_schemas_by_name_test.c │ │ │ ├── pcmk__find_x_0_schema_test.c │ │ │ ├── pcmk__get_schema_test.c │ │ │ ├── pcmk__schema_files_later_than_test.c │ │ │ └── pcmk__schema_init_test.c │ │ ├── scores │ │ │ ├── Makefile.am │ │ │ ├── pcmk__add_scores_test.c │ │ │ ├── pcmk_parse_score_test.c │ │ │ ├── pcmk_readable_score_test.c │ │ │ ├── pcmk_str_is_infinity_test.c │ │ │ └── pcmk_str_is_minus_infinity_test.c │ │ ├── strings │ │ │ ├── Makefile.am │ │ │ ├── pcmk__add_word_test.c │ │ │ ├── pcmk__btoa_test.c │ │ │ ├── pcmk__compress_test.c │ │ │ ├── pcmk__g_strcat_test.c │ │ │ ├── pcmk__guint_from_hash_test.c │ │ │ ├── pcmk__numeric_strcasecmp_test.c │ │ │ ├── pcmk__parse_bool_test.c │ │ │ ├── pcmk__parse_ll_range_test.c │ │ │ ├── pcmk__parse_ms_test.c │ │ │ ├── pcmk__s_test.c │ │ │ ├── pcmk__scan_double_test.c │ │ │ ├── pcmk__scan_ll_test.c │ │ │ ├── pcmk__scan_min_int_test.c │ │ │ ├── pcmk__scan_port_test.c │ │ │ ├── pcmk__str_any_of_test.c │ │ │ ├── pcmk__str_in_list_test.c │ │ │ ├── pcmk__str_table_dup_test.c │ │ │ ├── pcmk__str_update_test.c │ │ │ ├── pcmk__strcmp_test.c │ │ │ ├── pcmk__strikey_table_test.c │ │ │ └── pcmk__strkey_table_test.c │ │ ├── utils │ │ │ ├── Makefile.am │ │ │ ├── pcmk__compare_versions_test.c │ │ │ ├── pcmk__daemon_user_test.c │ │ │ ├── pcmk__fail_attr_name_test.c │ │ │ ├── pcmk__failcount_name_test.c │ │ │ ├── pcmk__getpid_s_test.c │ │ │ ├── pcmk__lastfailure_name_test.c │ │ │ ├── pcmk__lookup_user_test.c │ │ │ ├── pcmk__realloc_test.c │ │ │ └── pcmk__timeout_ms2s_test.c │ │ ├── xml │ │ │ ├── Makefile.am │ │ │ ├── pcmk__xml_escape_test.c │ │ │ ├── pcmk__xml_is_name_char_test.c │ │ │ ├── pcmk__xml_is_name_start_char_test.c │ │ │ ├── pcmk__xml_needs_escape_test.c │ │ │ ├── pcmk__xml_new_doc_test.c │ │ │ └── pcmk__xml_sanitize_id_test.c │ │ ├── xml_comment │ │ │ ├── Makefile.am │ │ │ └── pcmk__xc_create_test.c │ │ ├── xml_element │ │ │ ├── Makefile.am │ │ │ ├── pcmk__xe_attr_is_true_test.c │ │ │ ├── pcmk__xe_copy_attrs_test.c │ │ │ ├── pcmk__xe_first_child_test.c │ │ │ ├── pcmk__xe_foreach_child_test.c │ │ │ ├── pcmk__xe_get_bool_test.c │ │ │ ├── pcmk__xe_get_datetime_test.c │ │ │ ├── pcmk__xe_get_flags_test.c │ │ │ ├── pcmk__xe_get_score_test.c │ │ │ ├── pcmk__xe_next_test.c │ │ │ ├── pcmk__xe_set_bool_test.c │ │ │ ├── pcmk__xe_set_id_test.c │ │ │ ├── pcmk__xe_set_score_test.c │ │ │ └── pcmk__xe_sort_attrs_test.c │ │ ├── xml_idref │ │ │ ├── Makefile.am │ │ │ └── pcmk__xe_dereference_children_test.c │ │ └── xpath │ │ │ ├── Makefile.am │ │ │ └── pcmk__xpath_node_id_test.c │ ├── tls.c │ ├── unittest.c │ ├── utils.c │ ├── watchdog.c │ ├── xml.c │ ├── xml_attr.c │ ├── xml_comment.c │ ├── xml_display.c │ ├── xml_element.c │ ├── xml_idref.c │ ├── xml_io.c │ └── xpath.c ├── fencing │ ├── Makefile.am │ ├── fencing_private.h │ ├── st_actions.c │ ├── st_client.c │ ├── st_lha.c │ ├── st_output.c │ └── st_rhcs.c ├── libpacemaker.pc.in ├── lrmd │ ├── Makefile.am │ ├── lrmd_alerts.c │ ├── lrmd_client.c │ ├── lrmd_output.c │ └── proxy_common.c ├── pacemaker-cib.pc.in ├── pacemaker-cluster.pc.in ├── pacemaker-fencing.pc.in ├── pacemaker-lrmd.pc.in ├── pacemaker-pe_rules.pc.in ├── pacemaker-pe_status.pc.in ├── pacemaker-service.pc.in ├── pacemaker.pc.in ├── pacemaker │ ├── Makefile.am │ ├── libpacemaker_private.h │ ├── pcmk_acl.c │ ├── pcmk_agents.c │ ├── pcmk_cluster_queries.c │ ├── pcmk_fence.c │ ├── pcmk_graph_consumer.c │ ├── pcmk_graph_logging.c │ ├── pcmk_graph_producer.c │ ├── pcmk_injections.c │ ├── pcmk_options.c │ ├── pcmk_output.c │ ├── pcmk_resource.c │ ├── pcmk_result_code.c │ ├── pcmk_rule.c │ ├── pcmk_sched_actions.c │ ├── pcmk_sched_bundle.c │ ├── pcmk_sched_clone.c │ ├── pcmk_sched_colocation.c │ ├── pcmk_sched_constraints.c │ ├── pcmk_sched_fencing.c │ ├── pcmk_sched_group.c │ ├── pcmk_sched_instances.c │ ├── pcmk_sched_location.c │ ├── pcmk_sched_migration.c │ ├── pcmk_sched_nodes.c │ ├── pcmk_sched_ordering.c │ ├── pcmk_sched_primitive.c │ ├── pcmk_sched_probes.c │ ├── pcmk_sched_promotable.c │ ├── pcmk_sched_recurring.c │ ├── pcmk_sched_remote.c │ ├── pcmk_sched_resource.c │ ├── pcmk_sched_tickets.c │ ├── pcmk_sched_utilization.c │ ├── pcmk_scheduler.c │ ├── pcmk_setup.c │ ├── pcmk_simulate.c │ ├── pcmk_status.c │ ├── pcmk_ticket.c │ ├── pcmk_verify.c │ └── tests │ │ ├── Makefile.am │ │ ├── pcmk_resource │ │ ├── Makefile.am │ │ └── pcmk_resource_delete_test.c │ │ └── pcmk_ticket │ │ ├── Makefile.am │ │ ├── pcmk__get_ticket_state_test.c │ │ ├── pcmk_ticket_constraints_test.c │ │ ├── pcmk_ticket_delete_test.c │ │ ├── pcmk_ticket_get_attr_test.c │ │ ├── pcmk_ticket_info_test.c │ │ ├── pcmk_ticket_remove_attr_test.c │ │ ├── pcmk_ticket_set_attr_test.c │ │ └── pcmk_ticket_state_test.c ├── pengine │ ├── Makefile.am │ ├── bundle.c │ ├── clone.c │ ├── complex.c │ ├── failcounts.c │ ├── group.c │ ├── native.c │ ├── pe_actions.c │ ├── pe_digest.c │ ├── pe_health.c │ ├── pe_notif.c │ ├── pe_output.c │ ├── pe_status_private.h │ ├── remote.c │ ├── rules_compat.c │ ├── status.c │ ├── tags.c │ ├── tests │ │ ├── Makefile.am │ │ ├── native │ │ │ ├── Makefile.am │ │ │ ├── native_find_rsc_test.c │ │ │ └── pe_base_name_eq_test.c │ │ ├── status │ │ │ ├── Makefile.am │ │ │ ├── pe_find_node_any_test.c │ │ │ └── pe_find_node_id_test.c │ │ ├── unpack │ │ │ ├── Makefile.am │ │ │ └── pe_base_name_end_test.c │ │ └── utils │ │ │ ├── Makefile.am │ │ │ ├── pe__cmp_node_name_test.c │ │ │ └── pe__cmp_rsc_priority_test.c │ ├── unpack.c │ └── utils.c └── services │ ├── Makefile.am │ ├── dbus.c │ ├── pcmk-dbus.h │ ├── services.c │ ├── services_linux.c │ ├── services_lsb.c │ ├── services_lsb.h │ ├── services_ocf.c │ ├── services_ocf.h │ ├── services_private.h │ ├── systemd.c │ └── systemd.h ├── licenses ├── CC-BY-SA-4.0 ├── GPLv2 ├── LGPLv2.1 └── RevisedBSD ├── m4 ├── CC_CHECK_LDFLAGS.m4 ├── CHECK_ENUM_VALUE.m4 ├── CONFIG_FILES_EXEC.m4 ├── REQUIRE_FUNC.m4 ├── REQUIRE_HEADER.m4 ├── REQUIRE_LIB.m4 ├── REQUIRE_PROG.m4 ├── ax_check_link_flag.m4 ├── byteswap.m4 ├── extern-inline.m4 ├── md5.m4 ├── stdalign.m4 └── version.m4 ├── maint ├── Makefile.am ├── README └── bumplibs.in ├── mk ├── common.mk ├── man.mk ├── python.mk ├── release.mk ├── tap.mk ├── unittest.mk └── uploads.mk ├── po ├── LINGUAS ├── Makevars ├── POTFILES.in └── zh_CN.po ├── python ├── Makefile.am ├── pacemaker │ ├── Makefile.am │ ├── __init__.py │ ├── _cts │ │ ├── CTS.py │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── audits.py │ │ ├── cib.py │ │ ├── cibxml.py │ │ ├── clustermanager.py │ │ ├── cmcorosync.py │ │ ├── corosync.py │ │ ├── environment.py │ │ ├── errors.py │ │ ├── input.py │ │ ├── logging.py │ │ ├── network.py │ │ ├── patterns.py │ │ ├── process.py │ │ ├── remote.py │ │ ├── scenarios.py │ │ ├── test.py │ │ ├── tests │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── cibsecret.py │ │ │ ├── componentfail.py │ │ │ ├── ctstest.py │ │ │ ├── fliptest.py │ │ │ ├── maintenancemode.py │ │ │ ├── nearquorumpointtest.py │ │ │ ├── partialstart.py │ │ │ ├── reattach.py │ │ │ ├── remotebasic.py │ │ │ ├── remotedriver.py │ │ │ ├── remotemigrate.py │ │ │ ├── remoterscfailure.py │ │ │ ├── remotestonithd.py │ │ │ ├── resourcerecover.py │ │ │ ├── restartonebyone.py │ │ │ ├── restarttest.py │ │ │ ├── resynccib.py │ │ │ ├── simulstart.py │ │ │ ├── simulstartlite.py │ │ │ ├── simulstop.py │ │ │ ├── simulstoplite.py │ │ │ ├── splitbraintest.py │ │ │ ├── standbytest.py │ │ │ ├── startonebyone.py │ │ │ ├── starttest.py │ │ │ ├── stonithdtest.py │ │ │ ├── stoponebyone.py │ │ │ └── stoptest.py │ │ ├── timer.py │ │ ├── validate.py │ │ └── watcher.py │ ├── _library.py │ ├── buildoptions.py.in │ └── exitstatus.py ├── pylintrc ├── setup.py.in └── tests │ ├── Makefile.am │ ├── __init__.py │ ├── test_cts_network.py │ └── test_exitstatus.py ├── rpm ├── Makefile.am ├── README ├── pacemaker.spec.in ├── pacemaker.sysusers.in └── rpmlintrc ├── tests ├── Makefile.am ├── tap-driver.sh ├── tap-test └── test-headers.sh ├── tools ├── Makefile.am ├── attrd_updater.8.inc ├── attrd_updater.c ├── cibadmin.8.inc ├── cibadmin.c ├── cibsecret.8.inc ├── cibsecret.c ├── crm_attribute.8.inc ├── crm_attribute.c ├── crm_diff.8.inc ├── crm_diff.c ├── crm_error.8.inc ├── crm_error.c ├── crm_failcount.in ├── crm_master.in ├── crm_mon.8.inc ├── crm_mon.c ├── crm_mon.h ├── crm_mon.service.in ├── crm_mon_curses.c ├── crm_node.8.inc ├── crm_node.c ├── crm_report.in ├── crm_resource.8.inc ├── crm_resource.c ├── crm_resource.h ├── crm_resource_ban.c ├── crm_resource_print.c ├── crm_resource_runtime.c ├── crm_rule.8.inc ├── crm_rule.c ├── crm_shadow.8.inc ├── crm_shadow.c ├── crm_simulate.8.inc ├── crm_simulate.c ├── crm_standby.in ├── crm_ticket.8.inc ├── crm_ticket.c ├── crm_verify.8.inc ├── crm_verify.c ├── crmadmin.8.inc ├── crmadmin.c ├── fix-manpages ├── iso8601.8.inc ├── iso8601.c ├── pcmk_simtimes.in ├── report.collector.in ├── report.common.in ├── stonith_admin.8.inc └── stonith_admin.c └── xml ├── Makefile.am ├── README.md ├── acls-1.2.rng ├── acls-2.0.rng ├── acls-3.8.rng ├── alerts-2.10.rng ├── alerts-2.5.rng ├── alerts-2.9.rng ├── alerts-3.10.rng ├── alerts-3.5.rng ├── alerts-3.9.rng ├── alerts-4.0.rng ├── api ├── any-element-2.30.rng ├── cibadmin-2.41.rng ├── cibsecret-2.40.rng ├── command-output-1.0.rng ├── command-output-2.23.rng ├── crm_attribute-2.17.rng ├── crm_attribute-2.18.rng ├── crm_attribute-2.34.rng ├── crm_attribute-2.36.rng ├── crm_diff-2.39.rng ├── crm_error-2.23.rng ├── crm_mon-2.0.rng ├── crm_mon-2.1.rng ├── crm_mon-2.12.rng ├── crm_mon-2.13.rng ├── crm_mon-2.15.rng ├── crm_mon-2.19.rng ├── crm_mon-2.2.rng ├── crm_mon-2.21.rng ├── crm_mon-2.24.rng ├── crm_mon-2.25.rng ├── crm_mon-2.26.rng ├── crm_mon-2.27.rng ├── crm_mon-2.28.rng ├── crm_mon-2.29.rng ├── crm_mon-2.3.rng ├── crm_mon-2.35.rng ├── crm_mon-2.4.rng ├── crm_mon-2.41.rng ├── crm_mon-2.7.rng ├── crm_mon-2.8.rng ├── crm_mon-2.9.rng ├── crm_node-2.32.rng ├── crm_resource-2.11.rng ├── crm_resource-2.14.rng ├── crm_resource-2.20.rng ├── crm_resource-2.22.rng ├── crm_resource-2.23.rng ├── crm_resource-2.24.rng ├── crm_resource-2.28.rng ├── crm_resource-2.29.rng ├── crm_resource-2.36.rng ├── crm_resource-2.37.rng ├── crm_resource-2.4.rng ├── crm_resource-2.41.rng ├── crm_resource-2.6.rng ├── crm_resource-2.7.rng ├── crm_rule-2.16.rng ├── crm_shadow-2.30.rng ├── crm_simulate-2.12.rng ├── crm_simulate-2.19.rng ├── crm_simulate-2.21.rng ├── crm_simulate-2.24.rng ├── crm_simulate-2.28.rng ├── crm_simulate-2.29.rng ├── crm_simulate-2.41.rng ├── crm_simulate-2.8.rng ├── crm_ticket-2.35.rng ├── crmadmin-2.25.rng ├── crmadmin-2.4.rng ├── diff-2.30.rng ├── digests-2.6.rng ├── digests-2.9.rng ├── failure-2.8.rng ├── fence-event-2.0.rng ├── fence-event-2.15.rng ├── generic-list-2.4.rng ├── instruction-2.30.rng ├── iso8601-2.38.rng ├── item-1.1.rng ├── node-attrs-2.8.rng ├── node-history-2.12.rng ├── node-history-2.41.rng ├── nodes-2.19.rng ├── nodes-2.21.rng ├── nodes-2.24.rng ├── nodes-2.28.rng ├── nodes-2.29.rng ├── nodes-2.41.rng ├── nodes-2.8.rng ├── ocf-ra-1.1.rng ├── options-2.34.rng ├── options-2.36.rng ├── pacemakerd-2.10.rng ├── pacemakerd-health-2.25.rng ├── resources-2.24.rng ├── resources-2.28.rng ├── resources-2.29.rng ├── resources-2.4.rng ├── resources-2.41.rng ├── status-2.0.rng ├── stonith_admin-1.0.rng ├── stonith_admin-1.1.rng ├── stonith_admin-2.0.rng ├── stonith_admin-2.1.rng ├── stonith_admin-2.15.rng ├── stonith_admin-2.23.rng ├── stonith_admin-2.33.rng ├── subprocess-output-2.23.rng ├── ticket-2.35.rng └── version-2.0.rng ├── base └── access-render-2.xsl ├── cib-1.0.rng ├── cib-1.2.rng ├── cibtr-2.rng ├── constraints-1.0.rng ├── constraints-1.2.rng ├── constraints-2.1.rng ├── constraints-2.2.rng ├── constraints-2.3.rng ├── constraints-2.6.rng ├── constraints-2.9.rng ├── constraints-3.0.rng ├── constraints-3.10.rng ├── constraints-3.5.rng ├── constraints-3.6.rng ├── constraints-3.7.rng ├── constraints-3.9.rng ├── constraints-4.0.rng ├── context-of.xsl ├── crm.xsl ├── fencing-1.2.rng ├── fencing-2.4.rng ├── fencing-4.0.rng ├── nodes-1.0.rng ├── nodes-1.2.rng ├── nodes-1.3.rng ├── nodes-2.9.rng ├── nodes-3.0.rng ├── nodes-3.10.rng ├── nodes-3.4.rng ├── nodes-3.5.rng ├── nodes-3.9.rng ├── nodes-4.0.rng ├── nvset-1.3.rng ├── nvset-2.9.rng ├── nvset-3.0.rng ├── nvset-3.10.rng ├── nvset-3.4.rng ├── nvset-3.5.rng ├── nvset-3.9.rng ├── nvset-4.0.rng ├── nvset.rng ├── ocf-meta2man.xsl ├── options-1.0.rng ├── options-3.0.rng ├── options-3.10.rng ├── options-3.4.rng ├── options-3.5.rng ├── options-3.9.rng ├── options-4.0.rng ├── pacemaker-schemas.pc.in ├── resources-1.0.rng ├── resources-1.2.rng ├── resources-1.3.rng ├── resources-2.10.rng ├── resources-2.7.rng ├── resources-2.8.rng ├── resources-2.9.rng ├── resources-3.0.rng ├── resources-3.1.rng ├── resources-3.10.rng ├── resources-3.2.rng ├── resources-3.4.rng ├── resources-3.5.rng ├── resources-3.7.rng ├── resources-3.9.rng ├── resources-4.0.rng ├── rng-helper.in ├── rule-2.9.rng ├── rule-3.10.rng ├── rule-3.4.rng ├── rule-3.5.rng ├── rule-3.9.rng ├── rule-4.0.rng ├── rule.rng ├── score.rng ├── status-1.0.rng ├── tags-1.3.rng ├── tags-3.3.rng ├── upgrade-1.3-0.xsl ├── upgrade-2.10-0.xsl ├── upgrade-2.10-1.xsl ├── upgrade-2.10-2.xsl ├── upgrade-3.10-0.xsl ├── upgrade-3.10-1.xsl ├── upgrade-3.10-2.xsl ├── upgrade-3.10-3.xsl ├── upgrade-3.10-4.xsl ├── upgrade-3.10-99.xsl ├── upgrade-3.10-common.xsl ├── upgrade-detail.xsl └── xslt_cibtr-2.rng /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/GNUmakefile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/README.markdown -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/SECURITY.md -------------------------------------------------------------------------------- /agents/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/Makefile.am -------------------------------------------------------------------------------- /agents/alerts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/alerts/Makefile.am -------------------------------------------------------------------------------- /agents/ocf/ClusterMon.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/ClusterMon.in -------------------------------------------------------------------------------- /agents/ocf/Dummy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/Dummy.in -------------------------------------------------------------------------------- /agents/ocf/HealthCPU.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/HealthCPU.in -------------------------------------------------------------------------------- /agents/ocf/HealthIOWait.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/HealthIOWait.in -------------------------------------------------------------------------------- /agents/ocf/HealthSMART.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/HealthSMART.in -------------------------------------------------------------------------------- /agents/ocf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/Makefile.am -------------------------------------------------------------------------------- /agents/ocf/Stateful.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/Stateful.in -------------------------------------------------------------------------------- /agents/ocf/SysInfo.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/SysInfo.in -------------------------------------------------------------------------------- /agents/ocf/attribute.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/attribute.in -------------------------------------------------------------------------------- /agents/ocf/controld.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/controld.in -------------------------------------------------------------------------------- /agents/ocf/ifspeed.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/ifspeed.in -------------------------------------------------------------------------------- /agents/ocf/ping.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/ping.in -------------------------------------------------------------------------------- /agents/ocf/remote.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/ocf/remote.in -------------------------------------------------------------------------------- /agents/stonith/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/agents/stonith/Makefile.am -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/configure.ac -------------------------------------------------------------------------------- /cts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/Makefile.am -------------------------------------------------------------------------------- /cts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/README.md -------------------------------------------------------------------------------- /cts/benchmark/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/benchmark/Makefile.am -------------------------------------------------------------------------------- /cts/benchmark/clubench.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/benchmark/clubench.in -------------------------------------------------------------------------------- /cts/benchmark/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/benchmark/control -------------------------------------------------------------------------------- /cts/cli/constraints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cli/constraints.xml -------------------------------------------------------------------------------- /cts/cli/crm_diff_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cli/crm_diff_new.xml -------------------------------------------------------------------------------- /cts/cli/crm_diff_old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cli/crm_diff_old.xml -------------------------------------------------------------------------------- /cts/cli/crm_mon-T180.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cli/crm_mon-T180.xml -------------------------------------------------------------------------------- /cts/cli/crm_mon-partial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cli/crm_mon-partial.xml -------------------------------------------------------------------------------- /cts/cli/crm_mon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cli/crm_mon.xml -------------------------------------------------------------------------------- /cts/cli/regression.acls.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cli/regression.acls.exp -------------------------------------------------------------------------------- /cts/cli/regression.dates.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cli/regression.dates.exp -------------------------------------------------------------------------------- /cts/cli/regression.rules.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cli/regression.rules.exp -------------------------------------------------------------------------------- /cts/cli/tickets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cli/tickets.xml -------------------------------------------------------------------------------- /cts/cluster_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cluster_test.in -------------------------------------------------------------------------------- /cts/cts-attrd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cts-attrd.in -------------------------------------------------------------------------------- /cts/cts-cli.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cts-cli.in -------------------------------------------------------------------------------- /cts/cts-exec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cts-exec.in -------------------------------------------------------------------------------- /cts/cts-fencing.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cts-fencing.in -------------------------------------------------------------------------------- /cts/cts-lab.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cts-lab.in -------------------------------------------------------------------------------- /cts/cts-regression.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cts-regression.in -------------------------------------------------------------------------------- /cts/cts-scheduler.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cts-scheduler.in -------------------------------------------------------------------------------- /cts/cts-schemas.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/cts-schemas.in -------------------------------------------------------------------------------- /cts/scheduler/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/Makefile.am -------------------------------------------------------------------------------- /cts/scheduler/dot/1360.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/1360.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/1484.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/1484.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/1494.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/1494.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/594.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/594.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/662.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/662.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/696.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/696.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/726.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/726.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/735.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/735.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/764.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/764.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/797.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/797.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/829.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/829.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/994-2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/994-2.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/994.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/994.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/attrs1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/attrs1.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/attrs2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/attrs2.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/attrs3.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/attrs3.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/attrs4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/attrs4.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/attrs5.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/attrs5.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/attrs6.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/attrs6.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/attrs7.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/attrs7.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/attrs8.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/attrs8.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/bug-5025-2.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/bug-5038.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/bug-5069-op-enabled.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/bundle-order-partial.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/bundle-promoted-location-1.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/bundle-promoted-location-3.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/bundle-promoted-location-4.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/bundle-promoted-location-5.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/coloc-cloned-group-promoted-dependent1.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/coloc-cloned-group-promoted-dependent2.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/coloc-dependee-should-stay.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/colocation-vs-stickiness.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/date-1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/date-1.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/date-2.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/date-3.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/group-stop-ordering.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/group-unmanaged.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/group1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/group1.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/group2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/group2.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/group3.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/group3.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/group4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/group4.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/group5.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/group5.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/group6.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/group6.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/group7.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/group7.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/group8.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/group8.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/group9.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/group9.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/history-1.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/inc0.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc0.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc1.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc10.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc10.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc11.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc11.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc12.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc12.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc2.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc3.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc3.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc4.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc5.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc5.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc6.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc6.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc7.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc7.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc8.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc8.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/inc9.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/inc9.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/migrate-2.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/migration-ping-pong.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/multi1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/multi1.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/multiple-active-block-group.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/novell-239087.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ocf_degraded-remap-ocf_ok.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ocf_degraded_promoted-remap-ocf_ok.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/on-fail-ignore.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/order1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/order1.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/order2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/order2.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/order3.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/order3.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/order4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/order4.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/order5.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/order5.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/order6.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/order6.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/order7.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/order7.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/ordered-set-natural.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/origin.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/dot/origin.dot -------------------------------------------------------------------------------- /cts/scheduler/dot/probe-pending-node.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/probe-target-of-failed-migrate_to-2.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/promoted-allow-start.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/rec-rsc-8.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/remote-orphaned2.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/rule-dbl-as-auto-number-no-match.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/rule-dbl-as-integer-no-match.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/rule-dbl-as-number-no-match.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/rule-dbl-parse-fail-default-str-no-match.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/rule-int-as-auto-integer-no-match.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/rule-int-as-integer-no-match.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/rule-int-as-number-no-match.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/rule-int-parse-fail-default-str-no-match.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/shutdown-maintenance-node.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/simple1.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/stopped-monitor-04.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/stopped-monitor-05.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/stopped-monitor-06.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/stopped-monitor-07.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/stopped-monitor-09.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/stopped-monitor-10.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/stopped-monitor-11.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/stopped-monitor-12.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/stopped-monitor-24.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/stopped-monitor-26.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-clone-12.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-clone-13.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-clone-16.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-clone-19.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-clone-22.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-clone-24.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-group-12.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-group-13.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-group-16.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-group-19.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-group-22.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-group-24.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-primitive-12.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-primitive-13.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-primitive-16.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-primitive-19.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-primitive-22.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-primitive-24.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-promoted-12.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-promoted-13.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-promoted-16.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-promoted-19.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-promoted-22.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-promoted-24.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-rsc-sets-11.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/dot/ticket-rsc-sets-8.dot: -------------------------------------------------------------------------------- 1 | digraph "g" { 2 | } 3 | -------------------------------------------------------------------------------- /cts/scheduler/exp/1360.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/1360.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/1484.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/1484.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/1494.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/1494.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/594.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/594.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/662.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/662.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/696.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/696.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/726.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/726.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/735.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/735.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/764.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/764.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/797.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/797.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/829.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/829.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/994-2.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/994-2.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/994.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/994.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/attrs1.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/attrs1.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/attrs2.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/attrs2.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/attrs3.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/attrs3.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/attrs4.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/attrs4.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/attrs5.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/attrs5.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/attrs6.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/attrs6.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/attrs7.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/attrs7.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/attrs8.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/attrs8.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/date-1.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/date-1.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/date-2.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/date-2.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/date-3.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/date-3.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/group1.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/group1.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/group2.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/group2.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/group3.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/group3.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/group4.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/group4.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/group5.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/group5.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/group6.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/group6.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/group7.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/group7.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/group8.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/group8.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/group9.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/group9.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc0.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc0.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc1.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc1.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc10.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc10.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc11.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc11.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc12.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc12.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc2.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc2.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc3.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc3.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc4.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc4.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc5.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc5.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc6.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc6.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc7.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc7.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc8.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc8.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/inc9.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/inc9.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/multi1.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/multi1.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/order1.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/order1.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/order2.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/order2.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/order3.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/order3.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/order4.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/order4.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/order5.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/order5.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/order6.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/order6.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/order7.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/order7.exp -------------------------------------------------------------------------------- /cts/scheduler/exp/origin.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/exp/origin.exp -------------------------------------------------------------------------------- /cts/scheduler/scores/attrs5.scores: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cts/scheduler/scores/origin.scores: -------------------------------------------------------------------------------- 1 | 2 | pcmk__primitive_assign: resD allocation score on node1: 0 3 | -------------------------------------------------------------------------------- /cts/scheduler/scores/probe-1.scores: -------------------------------------------------------------------------------- 1 | 2 | pcmk__primitive_assign: DcIPaddr allocation score on c001n05: 0 3 | -------------------------------------------------------------------------------- /cts/scheduler/scores/remote-orphaned2.scores: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cts/scheduler/scores/simple1.scores: -------------------------------------------------------------------------------- 1 | 2 | pcmk__primitive_assign: rsc1 allocation score on node1: 0 3 | -------------------------------------------------------------------------------- /cts/scheduler/scores/simple3.scores: -------------------------------------------------------------------------------- 1 | 2 | pcmk__primitive_assign: rsc1 allocation score on node1: 0 3 | -------------------------------------------------------------------------------- /cts/scheduler/scores/simple4.scores: -------------------------------------------------------------------------------- 1 | 2 | pcmk__primitive_assign: rsc1 allocation score on node1: -INFINITY 3 | -------------------------------------------------------------------------------- /cts/scheduler/scores/simple7.scores: -------------------------------------------------------------------------------- 1 | 2 | pcmk__primitive_assign: rsc1 allocation score on node1: 0 3 | -------------------------------------------------------------------------------- /cts/scheduler/xml/1360.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/1360.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/1484.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/1484.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/1494.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/1494.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/594.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/594.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/662.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/662.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/696.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/696.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/726.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/726.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/735.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/735.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/764.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/764.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/797.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/797.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/829.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/829.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/994-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/994-2.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/994.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/994.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/attrs1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/attrs1.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/attrs2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/attrs2.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/attrs3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/attrs3.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/attrs4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/attrs4.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/attrs5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/attrs5.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/attrs6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/attrs6.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/attrs7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/attrs7.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/attrs8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/attrs8.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/date-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/date-1.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/date-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/date-2.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/date-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/date-3.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/group1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/group1.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/group2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/group2.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/group3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/group3.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/group4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/group4.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/group5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/group5.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/group6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/group6.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/group7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/group7.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/group8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/group8.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/group9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/group9.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc0.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc1.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc10.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc11.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc12.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc2.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc3.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc4.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc5.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc6.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc7.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc8.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/inc9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/inc9.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/multi1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/multi1.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/order1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/order1.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/order2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/order2.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/order3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/order3.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/order4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/order4.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/order5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/order5.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/order6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/order6.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/order7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/order7.xml -------------------------------------------------------------------------------- /cts/scheduler/xml/origin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/scheduler/xml/origin.xml -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/001-clu-props.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/001-clu-props.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/002-instance_atributes-rsc.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/002-instance_atributes-rsc.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/002-instance_atributes-rsc.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/003-instance_atributes-rsc-nonbijective.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/004-clu-props-can.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/004-clu-props-can.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/004-clu-props-can.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/005-clu-props-cannot.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/005-clu-props-cannot.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/005-clu-props-cannot.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/006-instance_atributes-rsc-nonbijective.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/006-instance_atributes-rsc-nonbijective.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/007-instance_atributes-rsc-nonbijective.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/010-rsc_colocation-dropped-for-noop-sa.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/010-rsc_colocation-dropped-for-noop-sa.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/020-rsc-requires-inline.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/020-rsc-requires-inline.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/021-rsc-requires-nvpair.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/021-rsc-requires-nvpair.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/022-rsc-requires-counterexamples.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/022-rsc-requires-counterexamples.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/023-rsc-requires-no-override.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/023-rsc-requires-no-override.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/024-rsc-requires-no-selfclash.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/024-rsc-requires-no-selfclash.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/030-clu-props-plain-rename.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/030-clu-props-plain-rename.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/031-clu-props-drop.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/031-clu-props-drop.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/032-clu-props-move.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/032-clu-props-move.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/033-clu-props-move-merge.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/033-clu-props-move-merge.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/034-clu-props-move-redef.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/034-clu-props-move-redef.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/040-nodes-rename-type.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/040-nodes-rename-type.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/050-rsc-attrs-instance-plain-rename.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/050-rsc-attrs-instance-plain-rename.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/051-rsc-attrs-instance-pcmk_arg_map.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/051-rsc-attrs-instance-pcmk_arg_map.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/060-rsc-attrs-meta-isolation.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/060-rsc-attrs-meta-isolation.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/061-rsc-attrs-meta-exchange.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/061-rsc-attrs-meta-exchange.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/070-rsc-op-attrs-inst-requires-start.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/070-rsc-op-attrs-inst-requires-start.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/071-rsc-op-attrs-inst-requires-nonstart.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/071-rsc-op-attrs-inst-requires-nonstart.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/072-rsc-op-attrs-inst-requires-no-override.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/072-rsc-op-attrs-inst-requires-no-override.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/073-rsc-op-attrs-inst-meta-meaning.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-2/ref.err/073-rsc-op-attrs-inst-meta-meaning.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/acl-drop.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/acl-drop.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/acl-drop.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/bundle-promoted-max-legacy.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/bundle-promoted-max-legacy.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/bundle-promoted-max-legacy.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/bundle-promoted-max-legacy.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/bundle-promoted-max-legacy.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/can-fail.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/can-fail.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/can-fail.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/can-fail.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/can-fail.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-finalization-timeout.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-finalization-timeout.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-finalization-timeout.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-finalization-timeout.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-finalization-timeout.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-finalization-timeout.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-integration-timeout.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-integration-timeout.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-integration-timeout.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-integration-timeout.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-integration-timeout.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-integration-timeout.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-transition-delay.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-transition-delay.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-transition-delay.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-transition-delay.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-transition-delay.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/crmd-transition-delay.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-no-default.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-no-default.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-no-default.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-no-default.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-no-default.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-no-default.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-with-default.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-with-default.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-with-default.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-with-default.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-with-default.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs-with-default.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/duplicate-nvpairs.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/fencing-level.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/fencing-level.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/fencing-level.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/fencing-level.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/fencing-level.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/fencing-level.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/id-ref.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/id-ref.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/id-ref.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/id-ref.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/id-ref.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/id-ref.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/lifetime-1.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/lifetime-1.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/lifetime-1.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/lifetime-1.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/lifetime-1.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/lifetime-2.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/lifetime-2.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/lifetime-2.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/lifetime-2.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/lifetime-2.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/moon.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/moon.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/moon.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/moon.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/moon.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/multiple-location-rules.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/multiple-location-rules.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/multiple-location-rules.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/multiple-location-rules.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/multiple-location-rules.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/multiple-location-rules.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/nagios.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/nagios.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/nagios.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/nagios.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/nagios.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/nvpair-no-value.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/nvpair-no-value.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/nvpair-no-value.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/nvpair-no-value.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/nvpair-no-value.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/nvpair-no-value.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/ping-node.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/ping-node.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/ping-node.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/ping-node.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/ping-node.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/ping-node.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/promotable-legacy.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/promotable-legacy.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/promotable-legacy.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/promotable-legacy.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/promotable-legacy.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/promotable-legacy.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/remove-after-stop.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/remove-after-stop.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/remove-after-stop.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/remove-after-stop.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/remove-after-stop.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/restart-type.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/restart-type.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/restart-type.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/restart-type.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/restart-type.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/rkt.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/rkt.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/rkt.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/rkt.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/rkt.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/role-after-failure.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/role-after-failure.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/role-after-failure.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/role-after-failure.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/role-after-failure.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/sort-nvsets.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/sort-nvsets.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/sort-nvsets.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/sort-nvsets.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/sort-nvsets.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/sort-nvsets.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/stonith-action-poweroff.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/stonith-action-poweroff.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/stonith-action-poweroff.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/stonith-action-poweroff.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/stonith-action-poweroff.ref.err-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/stonith-action-poweroff.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/upstart.ref.err-0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/upstart.ref.err-1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/upstart.ref.err-2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/upstart.ref.err-3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/schemas/test-3/ref.err/upstart.ref.err-99: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cts/support/LSBDummy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/support/LSBDummy.in -------------------------------------------------------------------------------- /cts/support/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/support/Makefile.am -------------------------------------------------------------------------------- /cts/support/cts-support.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/support/cts-support.in -------------------------------------------------------------------------------- /cts/support/cts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/support/cts.conf -------------------------------------------------------------------------------- /cts/support/fence_dummy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/cts/support/fence_dummy.in -------------------------------------------------------------------------------- /daemons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/Makefile.am -------------------------------------------------------------------------------- /daemons/attrd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/attrd/Makefile.am -------------------------------------------------------------------------------- /daemons/attrd/attrd_alerts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/attrd/attrd_alerts.c -------------------------------------------------------------------------------- /daemons/attrd/attrd_cib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/attrd/attrd_cib.c -------------------------------------------------------------------------------- /daemons/attrd/attrd_ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/attrd/attrd_ipc.c -------------------------------------------------------------------------------- /daemons/attrd/attrd_nodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/attrd/attrd_nodes.c -------------------------------------------------------------------------------- /daemons/attrd/attrd_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/attrd/attrd_sync.c -------------------------------------------------------------------------------- /daemons/attrd/attrd_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/attrd/attrd_utils.c -------------------------------------------------------------------------------- /daemons/based/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/based/Makefile.am -------------------------------------------------------------------------------- /daemons/based/based_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/based/based_io.c -------------------------------------------------------------------------------- /daemons/based/based_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/based/based_notify.c -------------------------------------------------------------------------------- /daemons/based/based_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/based/based_remote.c -------------------------------------------------------------------------------- /daemons/based/cib.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/based/cib.pam -------------------------------------------------------------------------------- /daemons/controld/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/controld/Makefile.am -------------------------------------------------------------------------------- /daemons/execd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/execd/Makefile.am -------------------------------------------------------------------------------- /daemons/execd/execd_alerts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/execd/execd_alerts.c -------------------------------------------------------------------------------- /daemons/execd/remoted_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/execd/remoted_tls.c -------------------------------------------------------------------------------- /daemons/fenced/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/fenced/Makefile.am -------------------------------------------------------------------------------- /daemons/fenced/fenced_cib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/daemons/fenced/fenced_cib.c -------------------------------------------------------------------------------- /devel/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/devel/Makefile.am -------------------------------------------------------------------------------- /devel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/devel/README -------------------------------------------------------------------------------- /devel/gdbhelpers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/devel/gdbhelpers -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/PCMK-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/doc/PCMK-MIB.txt -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/abi-check.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/doc/abi-check.in -------------------------------------------------------------------------------- /doc/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/doc/security.txt -------------------------------------------------------------------------------- /doc/sphinx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/doc/sphinx/Makefile.am -------------------------------------------------------------------------------- /doc/sphinx/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/doc/sphinx/conf.py.in -------------------------------------------------------------------------------- /etc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/etc/Makefile.am -------------------------------------------------------------------------------- /etc/init.d/pacemaker.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/etc/init.d/pacemaker.in -------------------------------------------------------------------------------- /etc/logrotate.d/pacemaker.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/etc/logrotate.d/pacemaker.in -------------------------------------------------------------------------------- /etc/sysconfig/crm_mon: -------------------------------------------------------------------------------- 1 | # 2 | # Please refer to manual page for detailed options. 3 | # 4 | #OPTIONS="-d" 5 | -------------------------------------------------------------------------------- /etc/sysconfig/pacemaker.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/etc/sysconfig/pacemaker.in -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/crm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/Makefile.am -------------------------------------------------------------------------------- /include/crm/cib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/cib.h -------------------------------------------------------------------------------- /include/crm/cib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/cib/Makefile.am -------------------------------------------------------------------------------- /include/crm/cib/cib_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/cib/cib_types.h -------------------------------------------------------------------------------- /include/crm/cib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/cib/internal.h -------------------------------------------------------------------------------- /include/crm/cib/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/cib/util.h -------------------------------------------------------------------------------- /include/crm/cib_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/cib_compat.h -------------------------------------------------------------------------------- /include/crm/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/cluster.h -------------------------------------------------------------------------------- /include/crm/cluster/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/cluster/compat.h -------------------------------------------------------------------------------- /include/crm/common/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/acl.h -------------------------------------------------------------------------------- /include/crm/common/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/actions.h -------------------------------------------------------------------------------- /include/crm/common/agents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/agents.h -------------------------------------------------------------------------------- /include/crm/common/cib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/cib.h -------------------------------------------------------------------------------- /include/crm/common/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/ipc.h -------------------------------------------------------------------------------- /include/crm/common/iso8601.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/iso8601.h -------------------------------------------------------------------------------- /include/crm/common/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/logging.h -------------------------------------------------------------------------------- /include/crm/common/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/nodes.h -------------------------------------------------------------------------------- /include/crm/common/nvpair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/nvpair.h -------------------------------------------------------------------------------- /include/crm/common/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/options.h -------------------------------------------------------------------------------- /include/crm/common/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/output.h -------------------------------------------------------------------------------- /include/crm/common/probes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/probes.h -------------------------------------------------------------------------------- /include/crm/common/results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/results.h -------------------------------------------------------------------------------- /include/crm/common/roles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/roles.h -------------------------------------------------------------------------------- /include/crm/common/rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/rules.h -------------------------------------------------------------------------------- /include/crm/common/schemas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/schemas.h -------------------------------------------------------------------------------- /include/crm/common/scores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/scores.h -------------------------------------------------------------------------------- /include/crm/common/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/strings.h -------------------------------------------------------------------------------- /include/crm/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/util.h -------------------------------------------------------------------------------- /include/crm/common/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/xml.h -------------------------------------------------------------------------------- /include/crm/common/xml_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/common/xml_io.h -------------------------------------------------------------------------------- /include/crm/crm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/crm.h -------------------------------------------------------------------------------- /include/crm/crm_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/crm_compat.h -------------------------------------------------------------------------------- /include/crm/lrmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/lrmd.h -------------------------------------------------------------------------------- /include/crm/lrmd_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/lrmd_events.h -------------------------------------------------------------------------------- /include/crm/lrmd_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/lrmd_internal.h -------------------------------------------------------------------------------- /include/crm/msg_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/msg_xml.h -------------------------------------------------------------------------------- /include/crm/msg_xml_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/msg_xml_compat.h -------------------------------------------------------------------------------- /include/crm/pengine/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/pengine/common.h -------------------------------------------------------------------------------- /include/crm/pengine/rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/pengine/rules.h -------------------------------------------------------------------------------- /include/crm/pengine/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/pengine/status.h -------------------------------------------------------------------------------- /include/crm/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/services.h -------------------------------------------------------------------------------- /include/crm/stonith-ng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm/stonith-ng.h -------------------------------------------------------------------------------- /include/crm_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm_config.h.in -------------------------------------------------------------------------------- /include/crm_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/crm_internal.h -------------------------------------------------------------------------------- /include/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/doxygen.h -------------------------------------------------------------------------------- /include/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/gettext.h -------------------------------------------------------------------------------- /include/pacemaker-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/pacemaker-internal.h -------------------------------------------------------------------------------- /include/pacemaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/pacemaker.h -------------------------------------------------------------------------------- /include/pcmki/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/pcmki/Makefile.am -------------------------------------------------------------------------------- /include/pcmki/pcmki_acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/pcmki/pcmki_acl.h -------------------------------------------------------------------------------- /include/pcmki/pcmki_agents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/pcmki/pcmki_agents.h -------------------------------------------------------------------------------- /include/pcmki/pcmki_fence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/pcmki/pcmki_fence.h -------------------------------------------------------------------------------- /include/pcmki/pcmki_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/pcmki/pcmki_output.h -------------------------------------------------------------------------------- /include/pcmki/pcmki_rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/pcmki/pcmki_rule.h -------------------------------------------------------------------------------- /include/pcmki/pcmki_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/pcmki/pcmki_status.h -------------------------------------------------------------------------------- /include/pcmki/pcmki_ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/pcmki/pcmki_ticket.h -------------------------------------------------------------------------------- /include/pcmki/pcmki_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/pcmki/pcmki_verify.h -------------------------------------------------------------------------------- /include/portability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/include/portability.h -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/cib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cib/Makefile.am -------------------------------------------------------------------------------- /lib/cib/cib_attrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cib/cib_attrs.c -------------------------------------------------------------------------------- /lib/cib/cib_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cib/cib_client.c -------------------------------------------------------------------------------- /lib/cib/cib_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cib/cib_file.c -------------------------------------------------------------------------------- /lib/cib/cib_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cib/cib_native.c -------------------------------------------------------------------------------- /lib/cib/cib_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cib/cib_ops.c -------------------------------------------------------------------------------- /lib/cib/cib_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cib/cib_remote.c -------------------------------------------------------------------------------- /lib/cib/cib_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cib/cib_utils.c -------------------------------------------------------------------------------- /lib/cluster/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cluster/Makefile.am -------------------------------------------------------------------------------- /lib/cluster/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cluster/cluster.c -------------------------------------------------------------------------------- /lib/cluster/corosync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cluster/corosync.c -------------------------------------------------------------------------------- /lib/cluster/cpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cluster/cpg.c -------------------------------------------------------------------------------- /lib/cluster/election.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cluster/election.c -------------------------------------------------------------------------------- /lib/cluster/membership.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/cluster/membership.c -------------------------------------------------------------------------------- /lib/common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/Makefile.am -------------------------------------------------------------------------------- /lib/common/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/acl.c -------------------------------------------------------------------------------- /lib/common/action_relation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/action_relation.c -------------------------------------------------------------------------------- /lib/common/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/actions.c -------------------------------------------------------------------------------- /lib/common/agents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/agents.c -------------------------------------------------------------------------------- /lib/common/alerts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/alerts.c -------------------------------------------------------------------------------- /lib/common/attrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/attrs.c -------------------------------------------------------------------------------- /lib/common/cib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/cib.c -------------------------------------------------------------------------------- /lib/common/cib_secrets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/cib_secrets.c -------------------------------------------------------------------------------- /lib/common/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/cmdline.c -------------------------------------------------------------------------------- /lib/common/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/digest.c -------------------------------------------------------------------------------- /lib/common/health.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/health.c -------------------------------------------------------------------------------- /lib/common/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/io.c -------------------------------------------------------------------------------- /lib/common/ipc_attrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/ipc_attrd.c -------------------------------------------------------------------------------- /lib/common/ipc_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/ipc_client.c -------------------------------------------------------------------------------- /lib/common/ipc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/ipc_common.c -------------------------------------------------------------------------------- /lib/common/ipc_controld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/ipc_controld.c -------------------------------------------------------------------------------- /lib/common/ipc_pacemakerd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/ipc_pacemakerd.c -------------------------------------------------------------------------------- /lib/common/ipc_schedulerd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/ipc_schedulerd.c -------------------------------------------------------------------------------- /lib/common/ipc_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/ipc_server.c -------------------------------------------------------------------------------- /lib/common/iso8601.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/iso8601.c -------------------------------------------------------------------------------- /lib/common/lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/lists.c -------------------------------------------------------------------------------- /lib/common/location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/location.c -------------------------------------------------------------------------------- /lib/common/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/logging.c -------------------------------------------------------------------------------- /lib/common/mainloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/mainloop.c -------------------------------------------------------------------------------- /lib/common/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/messages.c -------------------------------------------------------------------------------- /lib/common/mock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/mock.c -------------------------------------------------------------------------------- /lib/common/mock_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/mock_private.h -------------------------------------------------------------------------------- /lib/common/nodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/nodes.c -------------------------------------------------------------------------------- /lib/common/nvpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/nvpair.c -------------------------------------------------------------------------------- /lib/common/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/options.c -------------------------------------------------------------------------------- /lib/common/options_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/options_display.c -------------------------------------------------------------------------------- /lib/common/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/output.c -------------------------------------------------------------------------------- /lib/common/output_html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/output_html.c -------------------------------------------------------------------------------- /lib/common/output_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/output_log.c -------------------------------------------------------------------------------- /lib/common/output_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/output_none.c -------------------------------------------------------------------------------- /lib/common/output_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/output_text.c -------------------------------------------------------------------------------- /lib/common/output_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/output_xml.c -------------------------------------------------------------------------------- /lib/common/patchset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/patchset.c -------------------------------------------------------------------------------- /lib/common/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/pid.c -------------------------------------------------------------------------------- /lib/common/probes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/probes.c -------------------------------------------------------------------------------- /lib/common/procfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/procfs.c -------------------------------------------------------------------------------- /lib/common/remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/remote.c -------------------------------------------------------------------------------- /lib/common/resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/resources.c -------------------------------------------------------------------------------- /lib/common/results.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/results.c -------------------------------------------------------------------------------- /lib/common/roles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/roles.c -------------------------------------------------------------------------------- /lib/common/rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/rules.c -------------------------------------------------------------------------------- /lib/common/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/scheduler.c -------------------------------------------------------------------------------- /lib/common/schemas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/schemas.c -------------------------------------------------------------------------------- /lib/common/scores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/scores.c -------------------------------------------------------------------------------- /lib/common/servers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/servers.c -------------------------------------------------------------------------------- /lib/common/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/strings.c -------------------------------------------------------------------------------- /lib/common/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/tests/Makefile.am -------------------------------------------------------------------------------- /lib/common/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/tls.c -------------------------------------------------------------------------------- /lib/common/unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/unittest.c -------------------------------------------------------------------------------- /lib/common/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/utils.c -------------------------------------------------------------------------------- /lib/common/watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/watchdog.c -------------------------------------------------------------------------------- /lib/common/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/xml.c -------------------------------------------------------------------------------- /lib/common/xml_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/xml_attr.c -------------------------------------------------------------------------------- /lib/common/xml_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/xml_comment.c -------------------------------------------------------------------------------- /lib/common/xml_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/xml_display.c -------------------------------------------------------------------------------- /lib/common/xml_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/xml_element.c -------------------------------------------------------------------------------- /lib/common/xml_idref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/xml_idref.c -------------------------------------------------------------------------------- /lib/common/xml_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/xml_io.c -------------------------------------------------------------------------------- /lib/common/xpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/common/xpath.c -------------------------------------------------------------------------------- /lib/fencing/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/fencing/Makefile.am -------------------------------------------------------------------------------- /lib/fencing/st_actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/fencing/st_actions.c -------------------------------------------------------------------------------- /lib/fencing/st_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/fencing/st_client.c -------------------------------------------------------------------------------- /lib/fencing/st_lha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/fencing/st_lha.c -------------------------------------------------------------------------------- /lib/fencing/st_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/fencing/st_output.c -------------------------------------------------------------------------------- /lib/fencing/st_rhcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/fencing/st_rhcs.c -------------------------------------------------------------------------------- /lib/libpacemaker.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/libpacemaker.pc.in -------------------------------------------------------------------------------- /lib/lrmd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/lrmd/Makefile.am -------------------------------------------------------------------------------- /lib/lrmd/lrmd_alerts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/lrmd/lrmd_alerts.c -------------------------------------------------------------------------------- /lib/lrmd/lrmd_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/lrmd/lrmd_client.c -------------------------------------------------------------------------------- /lib/lrmd/lrmd_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/lrmd/lrmd_output.c -------------------------------------------------------------------------------- /lib/lrmd/proxy_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/lrmd/proxy_common.c -------------------------------------------------------------------------------- /lib/pacemaker-cib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pacemaker-cib.pc.in -------------------------------------------------------------------------------- /lib/pacemaker-cluster.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pacemaker-cluster.pc.in -------------------------------------------------------------------------------- /lib/pacemaker-lrmd.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pacemaker-lrmd.pc.in -------------------------------------------------------------------------------- /lib/pacemaker.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pacemaker.pc.in -------------------------------------------------------------------------------- /lib/pacemaker/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pacemaker/Makefile.am -------------------------------------------------------------------------------- /lib/pacemaker/pcmk_acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pacemaker/pcmk_acl.c -------------------------------------------------------------------------------- /lib/pacemaker/pcmk_rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pacemaker/pcmk_rule.c -------------------------------------------------------------------------------- /lib/pengine/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/Makefile.am -------------------------------------------------------------------------------- /lib/pengine/bundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/bundle.c -------------------------------------------------------------------------------- /lib/pengine/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/clone.c -------------------------------------------------------------------------------- /lib/pengine/complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/complex.c -------------------------------------------------------------------------------- /lib/pengine/failcounts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/failcounts.c -------------------------------------------------------------------------------- /lib/pengine/group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/group.c -------------------------------------------------------------------------------- /lib/pengine/native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/native.c -------------------------------------------------------------------------------- /lib/pengine/pe_actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/pe_actions.c -------------------------------------------------------------------------------- /lib/pengine/pe_digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/pe_digest.c -------------------------------------------------------------------------------- /lib/pengine/pe_health.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/pe_health.c -------------------------------------------------------------------------------- /lib/pengine/pe_notif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/pe_notif.c -------------------------------------------------------------------------------- /lib/pengine/pe_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/pe_output.c -------------------------------------------------------------------------------- /lib/pengine/remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/remote.c -------------------------------------------------------------------------------- /lib/pengine/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/status.c -------------------------------------------------------------------------------- /lib/pengine/tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/tags.c -------------------------------------------------------------------------------- /lib/pengine/unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/unpack.c -------------------------------------------------------------------------------- /lib/pengine/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/pengine/utils.c -------------------------------------------------------------------------------- /lib/services/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/services/Makefile.am -------------------------------------------------------------------------------- /lib/services/dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/services/dbus.c -------------------------------------------------------------------------------- /lib/services/pcmk-dbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/services/pcmk-dbus.h -------------------------------------------------------------------------------- /lib/services/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/services/services.c -------------------------------------------------------------------------------- /lib/services/systemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/services/systemd.c -------------------------------------------------------------------------------- /lib/services/systemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/lib/services/systemd.h -------------------------------------------------------------------------------- /licenses/CC-BY-SA-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/licenses/CC-BY-SA-4.0 -------------------------------------------------------------------------------- /licenses/GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/licenses/GPLv2 -------------------------------------------------------------------------------- /licenses/LGPLv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/licenses/LGPLv2.1 -------------------------------------------------------------------------------- /licenses/RevisedBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/licenses/RevisedBSD -------------------------------------------------------------------------------- /m4/CC_CHECK_LDFLAGS.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/CC_CHECK_LDFLAGS.m4 -------------------------------------------------------------------------------- /m4/CHECK_ENUM_VALUE.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/CHECK_ENUM_VALUE.m4 -------------------------------------------------------------------------------- /m4/CONFIG_FILES_EXEC.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/CONFIG_FILES_EXEC.m4 -------------------------------------------------------------------------------- /m4/REQUIRE_FUNC.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/REQUIRE_FUNC.m4 -------------------------------------------------------------------------------- /m4/REQUIRE_HEADER.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/REQUIRE_HEADER.m4 -------------------------------------------------------------------------------- /m4/REQUIRE_LIB.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/REQUIRE_LIB.m4 -------------------------------------------------------------------------------- /m4/REQUIRE_PROG.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/REQUIRE_PROG.m4 -------------------------------------------------------------------------------- /m4/ax_check_link_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/ax_check_link_flag.m4 -------------------------------------------------------------------------------- /m4/byteswap.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/byteswap.m4 -------------------------------------------------------------------------------- /m4/extern-inline.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/extern-inline.m4 -------------------------------------------------------------------------------- /m4/md5.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/md5.m4 -------------------------------------------------------------------------------- /m4/stdalign.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/stdalign.m4 -------------------------------------------------------------------------------- /m4/version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/m4/version.m4 -------------------------------------------------------------------------------- /maint/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/maint/Makefile.am -------------------------------------------------------------------------------- /maint/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/maint/README -------------------------------------------------------------------------------- /maint/bumplibs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/maint/bumplibs.in -------------------------------------------------------------------------------- /mk/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/mk/common.mk -------------------------------------------------------------------------------- /mk/man.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/mk/man.mk -------------------------------------------------------------------------------- /mk/python.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/mk/python.mk -------------------------------------------------------------------------------- /mk/release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/mk/release.mk -------------------------------------------------------------------------------- /mk/tap.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/mk/tap.mk -------------------------------------------------------------------------------- /mk/unittest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/mk/unittest.mk -------------------------------------------------------------------------------- /mk/uploads.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/mk/uploads.mk -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/python/Makefile.am -------------------------------------------------------------------------------- /python/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/python/pylintrc -------------------------------------------------------------------------------- /python/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/python/setup.py.in -------------------------------------------------------------------------------- /python/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/python/tests/Makefile.am -------------------------------------------------------------------------------- /python/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/rpm/Makefile.am -------------------------------------------------------------------------------- /rpm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/rpm/README -------------------------------------------------------------------------------- /rpm/pacemaker.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/rpm/pacemaker.spec.in -------------------------------------------------------------------------------- /rpm/pacemaker.sysusers.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/rpm/pacemaker.sysusers.in -------------------------------------------------------------------------------- /rpm/rpmlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/rpm/rpmlintrc -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/tap-driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tests/tap-driver.sh -------------------------------------------------------------------------------- /tests/tap-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tests/tap-test -------------------------------------------------------------------------------- /tests/test-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tests/test-headers.sh -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/attrd_updater.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/attrd_updater.8.inc -------------------------------------------------------------------------------- /tools/attrd_updater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/attrd_updater.c -------------------------------------------------------------------------------- /tools/cibadmin.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/cibadmin.8.inc -------------------------------------------------------------------------------- /tools/cibadmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/cibadmin.c -------------------------------------------------------------------------------- /tools/cibsecret.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/cibsecret.8.inc -------------------------------------------------------------------------------- /tools/cibsecret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/cibsecret.c -------------------------------------------------------------------------------- /tools/crm_attribute.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_attribute.8.inc -------------------------------------------------------------------------------- /tools/crm_attribute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_attribute.c -------------------------------------------------------------------------------- /tools/crm_diff.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_diff.8.inc -------------------------------------------------------------------------------- /tools/crm_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_diff.c -------------------------------------------------------------------------------- /tools/crm_error.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_error.8.inc -------------------------------------------------------------------------------- /tools/crm_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_error.c -------------------------------------------------------------------------------- /tools/crm_failcount.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_failcount.in -------------------------------------------------------------------------------- /tools/crm_master.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_master.in -------------------------------------------------------------------------------- /tools/crm_mon.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_mon.8.inc -------------------------------------------------------------------------------- /tools/crm_mon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_mon.c -------------------------------------------------------------------------------- /tools/crm_mon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_mon.h -------------------------------------------------------------------------------- /tools/crm_mon.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_mon.service.in -------------------------------------------------------------------------------- /tools/crm_mon_curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_mon_curses.c -------------------------------------------------------------------------------- /tools/crm_node.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_node.8.inc -------------------------------------------------------------------------------- /tools/crm_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_node.c -------------------------------------------------------------------------------- /tools/crm_report.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_report.in -------------------------------------------------------------------------------- /tools/crm_resource.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_resource.8.inc -------------------------------------------------------------------------------- /tools/crm_resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_resource.c -------------------------------------------------------------------------------- /tools/crm_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_resource.h -------------------------------------------------------------------------------- /tools/crm_resource_ban.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_resource_ban.c -------------------------------------------------------------------------------- /tools/crm_rule.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_rule.8.inc -------------------------------------------------------------------------------- /tools/crm_rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_rule.c -------------------------------------------------------------------------------- /tools/crm_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_shadow.c -------------------------------------------------------------------------------- /tools/crm_simulate.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_simulate.8.inc -------------------------------------------------------------------------------- /tools/crm_simulate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_simulate.c -------------------------------------------------------------------------------- /tools/crm_standby.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_standby.in -------------------------------------------------------------------------------- /tools/crm_ticket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_ticket.c -------------------------------------------------------------------------------- /tools/crm_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crm_verify.c -------------------------------------------------------------------------------- /tools/crmadmin.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crmadmin.8.inc -------------------------------------------------------------------------------- /tools/crmadmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/crmadmin.c -------------------------------------------------------------------------------- /tools/fix-manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/fix-manpages -------------------------------------------------------------------------------- /tools/iso8601.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/iso8601.8.inc -------------------------------------------------------------------------------- /tools/iso8601.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/iso8601.c -------------------------------------------------------------------------------- /tools/pcmk_simtimes.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/pcmk_simtimes.in -------------------------------------------------------------------------------- /tools/report.collector.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/report.collector.in -------------------------------------------------------------------------------- /tools/report.common.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/report.common.in -------------------------------------------------------------------------------- /tools/stonith_admin.8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/stonith_admin.8.inc -------------------------------------------------------------------------------- /tools/stonith_admin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/tools/stonith_admin.c -------------------------------------------------------------------------------- /xml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/Makefile.am -------------------------------------------------------------------------------- /xml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/README.md -------------------------------------------------------------------------------- /xml/acls-1.2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/acls-1.2.rng -------------------------------------------------------------------------------- /xml/acls-2.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/acls-2.0.rng -------------------------------------------------------------------------------- /xml/acls-3.8.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/acls-3.8.rng -------------------------------------------------------------------------------- /xml/alerts-2.10.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/alerts-2.10.rng -------------------------------------------------------------------------------- /xml/alerts-2.5.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/alerts-2.5.rng -------------------------------------------------------------------------------- /xml/alerts-2.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/alerts-2.9.rng -------------------------------------------------------------------------------- /xml/alerts-3.10.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/alerts-3.10.rng -------------------------------------------------------------------------------- /xml/alerts-3.5.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/alerts-3.5.rng -------------------------------------------------------------------------------- /xml/alerts-3.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/alerts-3.9.rng -------------------------------------------------------------------------------- /xml/alerts-4.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/alerts-4.0.rng -------------------------------------------------------------------------------- /xml/api/cibadmin-2.41.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/cibadmin-2.41.rng -------------------------------------------------------------------------------- /xml/api/crm_diff-2.39.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_diff-2.39.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.0.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.1.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.1.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.12.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.12.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.13.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.13.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.15.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.15.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.19.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.19.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.2.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.21.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.21.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.24.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.24.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.25.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.25.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.26.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.26.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.27.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.27.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.28.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.28.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.29.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.29.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.3.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.3.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.35.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.35.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.4.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.4.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.41.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.41.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.7.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.7.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.8.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.8.rng -------------------------------------------------------------------------------- /xml/api/crm_mon-2.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_mon-2.9.rng -------------------------------------------------------------------------------- /xml/api/crm_node-2.32.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_node-2.32.rng -------------------------------------------------------------------------------- /xml/api/crm_rule-2.16.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crm_rule-2.16.rng -------------------------------------------------------------------------------- /xml/api/crmadmin-2.25.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crmadmin-2.25.rng -------------------------------------------------------------------------------- /xml/api/crmadmin-2.4.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/crmadmin-2.4.rng -------------------------------------------------------------------------------- /xml/api/diff-2.30.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/diff-2.30.rng -------------------------------------------------------------------------------- /xml/api/digests-2.6.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/digests-2.6.rng -------------------------------------------------------------------------------- /xml/api/digests-2.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/digests-2.9.rng -------------------------------------------------------------------------------- /xml/api/failure-2.8.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/failure-2.8.rng -------------------------------------------------------------------------------- /xml/api/iso8601-2.38.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/iso8601-2.38.rng -------------------------------------------------------------------------------- /xml/api/item-1.1.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/item-1.1.rng -------------------------------------------------------------------------------- /xml/api/nodes-2.19.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/nodes-2.19.rng -------------------------------------------------------------------------------- /xml/api/nodes-2.21.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/nodes-2.21.rng -------------------------------------------------------------------------------- /xml/api/nodes-2.24.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/nodes-2.24.rng -------------------------------------------------------------------------------- /xml/api/nodes-2.28.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/nodes-2.28.rng -------------------------------------------------------------------------------- /xml/api/nodes-2.29.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/nodes-2.29.rng -------------------------------------------------------------------------------- /xml/api/nodes-2.41.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/nodes-2.41.rng -------------------------------------------------------------------------------- /xml/api/nodes-2.8.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/nodes-2.8.rng -------------------------------------------------------------------------------- /xml/api/ocf-ra-1.1.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/ocf-ra-1.1.rng -------------------------------------------------------------------------------- /xml/api/options-2.34.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/options-2.34.rng -------------------------------------------------------------------------------- /xml/api/options-2.36.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/options-2.36.rng -------------------------------------------------------------------------------- /xml/api/resources-2.4.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/resources-2.4.rng -------------------------------------------------------------------------------- /xml/api/status-2.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/status-2.0.rng -------------------------------------------------------------------------------- /xml/api/ticket-2.35.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/ticket-2.35.rng -------------------------------------------------------------------------------- /xml/api/version-2.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/api/version-2.0.rng -------------------------------------------------------------------------------- /xml/cib-1.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/cib-1.0.rng -------------------------------------------------------------------------------- /xml/cib-1.2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/cib-1.2.rng -------------------------------------------------------------------------------- /xml/cibtr-2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/cibtr-2.rng -------------------------------------------------------------------------------- /xml/constraints-1.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-1.0.rng -------------------------------------------------------------------------------- /xml/constraints-1.2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-1.2.rng -------------------------------------------------------------------------------- /xml/constraints-2.1.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-2.1.rng -------------------------------------------------------------------------------- /xml/constraints-2.2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-2.2.rng -------------------------------------------------------------------------------- /xml/constraints-2.3.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-2.3.rng -------------------------------------------------------------------------------- /xml/constraints-2.6.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-2.6.rng -------------------------------------------------------------------------------- /xml/constraints-2.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-2.9.rng -------------------------------------------------------------------------------- /xml/constraints-3.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-3.0.rng -------------------------------------------------------------------------------- /xml/constraints-3.10.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-3.10.rng -------------------------------------------------------------------------------- /xml/constraints-3.5.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-3.5.rng -------------------------------------------------------------------------------- /xml/constraints-3.6.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-3.6.rng -------------------------------------------------------------------------------- /xml/constraints-3.7.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-3.7.rng -------------------------------------------------------------------------------- /xml/constraints-3.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-3.9.rng -------------------------------------------------------------------------------- /xml/constraints-4.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/constraints-4.0.rng -------------------------------------------------------------------------------- /xml/context-of.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/context-of.xsl -------------------------------------------------------------------------------- /xml/crm.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/crm.xsl -------------------------------------------------------------------------------- /xml/fencing-1.2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/fencing-1.2.rng -------------------------------------------------------------------------------- /xml/fencing-2.4.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/fencing-2.4.rng -------------------------------------------------------------------------------- /xml/fencing-4.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/fencing-4.0.rng -------------------------------------------------------------------------------- /xml/nodes-1.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nodes-1.0.rng -------------------------------------------------------------------------------- /xml/nodes-1.2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nodes-1.2.rng -------------------------------------------------------------------------------- /xml/nodes-1.3.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nodes-1.3.rng -------------------------------------------------------------------------------- /xml/nodes-2.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nodes-2.9.rng -------------------------------------------------------------------------------- /xml/nodes-3.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nodes-3.0.rng -------------------------------------------------------------------------------- /xml/nodes-3.10.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nodes-3.10.rng -------------------------------------------------------------------------------- /xml/nodes-3.4.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nodes-3.4.rng -------------------------------------------------------------------------------- /xml/nodes-3.5.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nodes-3.5.rng -------------------------------------------------------------------------------- /xml/nodes-3.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nodes-3.9.rng -------------------------------------------------------------------------------- /xml/nodes-4.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nodes-4.0.rng -------------------------------------------------------------------------------- /xml/nvset-1.3.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nvset-1.3.rng -------------------------------------------------------------------------------- /xml/nvset-2.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nvset-2.9.rng -------------------------------------------------------------------------------- /xml/nvset-3.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nvset-3.0.rng -------------------------------------------------------------------------------- /xml/nvset-3.10.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nvset-3.10.rng -------------------------------------------------------------------------------- /xml/nvset-3.4.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nvset-3.4.rng -------------------------------------------------------------------------------- /xml/nvset-3.5.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nvset-3.5.rng -------------------------------------------------------------------------------- /xml/nvset-3.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nvset-3.9.rng -------------------------------------------------------------------------------- /xml/nvset-4.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nvset-4.0.rng -------------------------------------------------------------------------------- /xml/nvset.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/nvset.rng -------------------------------------------------------------------------------- /xml/ocf-meta2man.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/ocf-meta2man.xsl -------------------------------------------------------------------------------- /xml/options-1.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/options-1.0.rng -------------------------------------------------------------------------------- /xml/options-3.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/options-3.0.rng -------------------------------------------------------------------------------- /xml/options-3.10.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/options-3.10.rng -------------------------------------------------------------------------------- /xml/options-3.4.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/options-3.4.rng -------------------------------------------------------------------------------- /xml/options-3.5.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/options-3.5.rng -------------------------------------------------------------------------------- /xml/options-3.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/options-3.9.rng -------------------------------------------------------------------------------- /xml/options-4.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/options-4.0.rng -------------------------------------------------------------------------------- /xml/resources-1.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-1.0.rng -------------------------------------------------------------------------------- /xml/resources-1.2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-1.2.rng -------------------------------------------------------------------------------- /xml/resources-1.3.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-1.3.rng -------------------------------------------------------------------------------- /xml/resources-2.10.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-2.10.rng -------------------------------------------------------------------------------- /xml/resources-2.7.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-2.7.rng -------------------------------------------------------------------------------- /xml/resources-2.8.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-2.8.rng -------------------------------------------------------------------------------- /xml/resources-2.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-2.9.rng -------------------------------------------------------------------------------- /xml/resources-3.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-3.0.rng -------------------------------------------------------------------------------- /xml/resources-3.1.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-3.1.rng -------------------------------------------------------------------------------- /xml/resources-3.10.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-3.10.rng -------------------------------------------------------------------------------- /xml/resources-3.2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-3.2.rng -------------------------------------------------------------------------------- /xml/resources-3.4.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-3.4.rng -------------------------------------------------------------------------------- /xml/resources-3.5.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-3.5.rng -------------------------------------------------------------------------------- /xml/resources-3.7.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-3.7.rng -------------------------------------------------------------------------------- /xml/resources-3.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-3.9.rng -------------------------------------------------------------------------------- /xml/resources-4.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/resources-4.0.rng -------------------------------------------------------------------------------- /xml/rng-helper.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/rng-helper.in -------------------------------------------------------------------------------- /xml/rule-2.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/rule-2.9.rng -------------------------------------------------------------------------------- /xml/rule-3.10.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/rule-3.10.rng -------------------------------------------------------------------------------- /xml/rule-3.4.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/rule-3.4.rng -------------------------------------------------------------------------------- /xml/rule-3.5.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/rule-3.5.rng -------------------------------------------------------------------------------- /xml/rule-3.9.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/rule-3.9.rng -------------------------------------------------------------------------------- /xml/rule-4.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/rule-4.0.rng -------------------------------------------------------------------------------- /xml/rule.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/rule.rng -------------------------------------------------------------------------------- /xml/score.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/score.rng -------------------------------------------------------------------------------- /xml/status-1.0.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/status-1.0.rng -------------------------------------------------------------------------------- /xml/tags-1.3.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/tags-1.3.rng -------------------------------------------------------------------------------- /xml/tags-3.3.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/tags-3.3.rng -------------------------------------------------------------------------------- /xml/upgrade-1.3-0.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/upgrade-1.3-0.xsl -------------------------------------------------------------------------------- /xml/upgrade-2.10-0.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/upgrade-2.10-0.xsl -------------------------------------------------------------------------------- /xml/upgrade-2.10-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/upgrade-2.10-1.xsl -------------------------------------------------------------------------------- /xml/upgrade-2.10-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/upgrade-2.10-2.xsl -------------------------------------------------------------------------------- /xml/upgrade-3.10-0.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/upgrade-3.10-0.xsl -------------------------------------------------------------------------------- /xml/upgrade-3.10-1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/upgrade-3.10-1.xsl -------------------------------------------------------------------------------- /xml/upgrade-3.10-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/upgrade-3.10-2.xsl -------------------------------------------------------------------------------- /xml/upgrade-3.10-3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/upgrade-3.10-3.xsl -------------------------------------------------------------------------------- /xml/upgrade-3.10-4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/upgrade-3.10-4.xsl -------------------------------------------------------------------------------- /xml/upgrade-3.10-99.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/upgrade-3.10-99.xsl -------------------------------------------------------------------------------- /xml/upgrade-detail.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/upgrade-detail.xsl -------------------------------------------------------------------------------- /xml/xslt_cibtr-2.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterLabs/pacemaker/HEAD/xml/xslt_cibtr-2.rng --------------------------------------------------------------------------------