summaryrefslogtreecommitdiffstats
path: root/cts/scheduler/xml/colocation-influence.xml
blob: d5c6a8e52eeb272cecf669e1f2cc1acb2baabe21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
<cib crm_feature_set="3.6.3" validate-with="pacemaker-3.7" epoch="45" num_updates="44" admin_epoch="1" cib-last-written="Tue Dec 22 14:11:12 2020" update-origin="rhel7-1" update-client="cibadmin" update-user="root" have-quorum="1" dc-uuid="4">
  <configuration>
      <!-- This is a large combination test for colocation influence. The default migration-threshold
	   is 2, and default stickiness is 10 (so nothing should move unless due to colocations).
	   The dependent resources all have a fail count of 2 on their current node. Failed dependent
           resources should not cause an active "with" resource to move when influence is false. Tests:
	   - Colocation constraint (rsc1a with rsc1b) with invalid value for influence (should default,
             and both resources should move to a different node)
           - Colocation constraint (rsc2a with rsc2b) between two active primitives with influence=false
           - Colocation constraint (rsc3a with rsc3b) where influence=false and "with" resource is inactive
             but able to start (influence should be ignored)
           - Colocation constraint (rsc4a with rsc4b) where rsc4a has critical=false
	   - Colocation constraint (rsc5a with group5a) where rsc5a has critical=true
             but constraint has influence=false (influence should win, and rsc5a should stop)
	   - Colocation constraint (group6a with rsc6a) with influence=false
	   - Group (group7a) of two resources where second has critical=false
	   - Colocation constraint (rsc8a-clone with rsc8b-clone) between two clones with influence=false
	   - Colocation constraint with set (rsc9a, rsc9b, and failed rsc9c) and influence=false
	   - Colocation constraint (rsc10a with bundle10) between primitive and bundle with influence=false
	   - Colocation constraint (bundle11 with rsc11a) between bundle and primitive with influence=false
	   - Colocation constraint between tag (applying to rsc12a and failed rsc12b) and primitive (rsc12c)
             with influence=false
	   - Colocation constraint (rsc13a with rsc13b-clone master) between primitive and
             promoted role of clone with influence=false
	   - Colocation constraint (rsc14a-clone master with rsc14b) between promoted role of clone
             and primitive with influence=false
      -->
    <crm_config>
      <cluster_property_set id="cib-bootstrap-options">
        <nvpair id="cts-stonith-enabled" name="stonith-enabled" value="1"/>
        <nvpair id="cts-start-failure-is-fatal" name="start-failure-is-fatal" value="false"/>
        <nvpair id="cts-pe-input-series-max" name="pe-input-series-max" value="5000"/>
        <nvpair id="cts-shutdown-escalation" name="shutdown-escalation" value="5min"/>
        <nvpair id="cts-batch-limit" name="batch-limit" value="10"/>
        <nvpair id="cts-dc-deadtime" name="dc-deadtime" value="5s"/>
        <nvpair id="cts-no-quorum-policy" name="no-quorum-policy" value="stop"/>
        <nvpair id="cib-bootstrap-options-have-watchdog" name="have-watchdog" value="false"/>
        <nvpair id="cib-bootstrap-options-dc-version" name="dc-version" value="2.0.5-672.534afa7.git.el7_9-534afa7"/>
        <nvpair id="cib-bootstrap-options-cluster-infrastructure" name="cluster-infrastructure" value="corosync"/>
        <nvpair id="cib-bootstrap-options-cluster-name" name="cluster-name" value="mycluster"/>
        <nvpair id="cib-bootstrap-options-last-lrm-refresh" name="last-lrm-refresh" value="1608667771"/>
      </cluster_property_set>
    </crm_config>
    <nodes>
      <node id="1" uname="rhel7-1"/>
      <node id="2" uname="rhel7-2"/>
      <node id="3" uname="rhel7-3"/>
      <node id="4" uname="rhel7-4"/>
      <node id="5" uname="rhel7-5"/>
    </nodes>
    <resources>
      <primitive class="stonith" id="Fencing" type="fence_xvm">
        <instance_attributes id="Fencing-params">
          <nvpair id="Fencing-key_file" name="key_file" value="/etc/pacemaker/fence_xvm.key"/>
          <nvpair id="Fencing-multicast_address" name="multicast_address" value="239.255.100.100"/>
          <nvpair id="Fencing-pcmk_host_list" name="pcmk_host_list" value="rhel7-1 rhel7-2 rhel7-3 rhel7-4 rhel7-5"/>
        </instance_attributes>
        <operations>
          <op id="Fencing-monitor-120s" interval="120s" name="monitor" timeout="120s"/>
          <op id="Fencing-stop-0" interval="0" name="stop" timeout="60s"/>
          <op id="Fencing-start-0" interval="0" name="start" timeout="60s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc1a" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc1a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc1a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc1a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc1a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc1a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc1a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc1b" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc1b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc1b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc1b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc1b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc1b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc1b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc2a" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc2a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc2a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc2a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc2a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc2a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc2a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc2b" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc2b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc2b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc2b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc2b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc2b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc2b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc3a" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc3a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc3a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc3a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc3a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc3a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc3a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc3b" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc3b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc3b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc3b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc3b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc3b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc3b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc4a" provider="pacemaker" type="Dummy">
        <meta_attributes id="rsc4a-meta_attributes">
          <nvpair id="rsc4a-meta_attributes-critical" name="critical" value="false"/>
        </meta_attributes>
        <operations>
          <op id="rsc4a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc4a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc4a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc4a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc4a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc4a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc4b" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc4b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc4b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc4b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc4b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc4b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc4b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc5a" provider="pacemaker" type="Dummy">
        <meta_attributes id="rsc5a-meta_attributes">
          <nvpair id="rsc5a-meta_attributes-critical" name="critical" value="true"/>
        </meta_attributes>
        <operations>
          <op id="rsc5a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc5a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc5a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc5a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc5a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc5a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <group id="group5a">
        <primitive class="ocf" id="rsc5a1" provider="pacemaker" type="Dummy">
          <operations>
            <op id="rsc5a1-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
            <op id="rsc5a1-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
            <op id="rsc5a1-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
            <op id="rsc5a1-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
            <op id="rsc5a1-start-interval-0s" interval="0s" name="start" timeout="20s"/>
            <op id="rsc5a1-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
          </operations>
        </primitive>
        <primitive class="ocf" id="rsc5a2" provider="pacemaker" type="Dummy">
          <operations>
            <op id="rsc5a2-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
            <op id="rsc5a2-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
            <op id="rsc5a2-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
            <op id="rsc5a2-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
            <op id="rsc5a2-start-interval-0s" interval="0s" name="start" timeout="20s"/>
            <op id="rsc5a2-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
          </operations>
        </primitive>
      </group>
      <group id="group6a">
        <primitive class="ocf" id="rsc6a1" provider="pacemaker" type="Dummy">
          <operations>
            <op id="rsc6a1-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
            <op id="rsc6a1-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
            <op id="rsc6a1-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
            <op id="rsc6a1-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
            <op id="rsc6a1-start-interval-0s" interval="0s" name="start" timeout="20s"/>
            <op id="rsc6a1-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
          </operations>
        </primitive>
        <primitive class="ocf" id="rsc6a2" provider="pacemaker" type="Dummy">
          <operations>
            <op id="rsc6a2-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
            <op id="rsc6a2-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
            <op id="rsc6a2-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
            <op id="rsc6a2-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
            <op id="rsc6a2-start-interval-0s" interval="0s" name="start" timeout="20s"/>
            <op id="rsc6a2-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
          </operations>
        </primitive>
      </group>
      <primitive class="ocf" id="rsc6a" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc6a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc6a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc6a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc6a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc6a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc6a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <group id="group7a">
        <primitive class="ocf" id="rsc7a1" provider="pacemaker" type="Dummy">
          <operations>
            <op id="rsc7a1-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
            <op id="rsc7a1-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
            <op id="rsc7a1-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
            <op id="rsc7a1-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
            <op id="rsc7a1-start-interval-0s" interval="0s" name="start" timeout="20s"/>
            <op id="rsc7a1-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
          </operations>
        </primitive>
        <primitive class="ocf" id="rsc7a2" provider="pacemaker" type="Dummy">
          <meta_attributes id="rsc7a2-meta_attributes">
            <nvpair id="rsc7a2-meta_attributes-critical" name="critical" value="false"/>
          </meta_attributes>
          <operations>
            <op id="rsc7a2-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
            <op id="rsc7a2-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
            <op id="rsc7a2-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
            <op id="rsc7a2-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
            <op id="rsc7a2-start-interval-0s" interval="0s" name="start" timeout="20s"/>
            <op id="rsc7a2-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
          </operations>
        </primitive>
      </group>
      <clone id="rsc8a-clone">
        <primitive class="ocf" id="rsc8a" provider="pacemaker" type="Dummy">
          <operations>
            <op id="rsc8a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
            <op id="rsc8a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
            <op id="rsc8a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
            <op id="rsc8a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
            <op id="rsc8a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
            <op id="rsc8a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
          </operations>
        </primitive>
        <meta_attributes id="rsc8a-clone-meta_attributes">
          <nvpair id="rsc8a-clone-meta_attributes-interleave" name="interleave" value="true"/>
          <nvpair id="rsc8a-clone-meta_attributes-clone-max" name="clone-max" value="3"/>
        </meta_attributes>
      </clone>
      <clone id="rsc8b-clone">
        <primitive class="ocf" id="rsc8b" provider="pacemaker" type="Dummy">
          <operations>
            <op id="rsc8b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
            <op id="rsc8b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
            <op id="rsc8b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
            <op id="rsc8b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
            <op id="rsc8b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
            <op id="rsc8b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
          </operations>
        </primitive>
        <meta_attributes id="rsc8b-clone-meta_attributes">
          <nvpair id="rsc8b-clone-meta_attributes-interleave" name="interleave" value="true"/>
          <nvpair id="rsc8b-clone-meta_attributes-clone-max" name="clone-max" value="3"/>
        </meta_attributes>
      </clone>
      <primitive class="ocf" id="rsc9a" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc9a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc9a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc9a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc9a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc9a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc9a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc9b" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc9b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc9b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc9b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc9b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc9b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc9b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc9c" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc9c-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc9c-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc9c-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc9c-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc9c-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc9c-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc10a" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc10a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc10a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc10a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc10a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc10a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc10a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc11a" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc11a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc11a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc11a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc11a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc11a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc11a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc12a" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc12a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc12a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc12a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc12a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc12a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc12a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc12b" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc12b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc12b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc12b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc12b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc12b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc12b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <primitive class="ocf" id="rsc12c" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc12c-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc12c-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc12c-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc12c-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc12c-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc12c-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <bundle id="bundle10">
        <docker image="pcmktest:http" options="--log-driver=journald" replicas="2"/>
        <network control-port="9999" host-interface="eth0" host-netmask="24" ip-range-start="192.168.122.131">
          <port-mapping id="httpd-port" port="80"/>
        </network>
        <storage>
          <storage-mapping id="httpd-syslog" options="rw,Z" source-dir="/dev/log" target-dir="/dev/log"/>
          <storage-mapping id="httpd-root" options="rw,Z" source-dir-root="/var/local/containers" target-dir="/var/www/html"/>
          <storage-mapping id="httpd-logs" options="rw,Z" source-dir-root="/var/log/pacemaker/bundles" target-dir="/etc/httpd/logs"/>
        </storage>
        <primitive class="ocf" id="httpd" provider="heartbeat" type="apache">
          <operations>
            <op id="httpd-monitor-15s" interval="15s" name="monitor" timeout="15s"/>
          </operations>
        </primitive>
      </bundle>
      <bundle id="bundle11">
        <docker image="pcmktest:http" options="--log-driver=journald" replicas="2"/>
        <network control-port="3121" host-interface="eth0" host-netmask="24" ip-range-start="192.168.122.134"/>
        <primitive class="ocf" id="bundle11a" provider="pacemaker" type="Dummy">
          <operations>
            <op id="bundle11a-monitor-15s" interval="15s" name="monitor" timeout="15s"/>
          </operations>
        </primitive>
      </bundle>
      <primitive class="ocf" id="rsc13a" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc13a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc13a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc13a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc13a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc13a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc13a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <clone id="rsc13b-clone">
        <primitive class="ocf" id="rsc13b" provider="pacemaker" type="Stateful">
          <operations>
            <op id="rsc13b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
            <op id="rsc13b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
            <op id="rsc13b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s" role="Unpromoted"/>
            <op id="rsc13b-monitor-interval-11s" interval="11s" name="monitor" timeout="20s" role="Promoted"/>
            <op id="rsc13b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
            <op id="rsc13b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
            <op id="rsc13b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
          </operations>
        </primitive>
        <meta_attributes id="rsc13b-clone-meta_attributes">
          <nvpair id="rsc13b-clone-meta_attributes-promotable" name="promotable" value="true"/>
        </meta_attributes>
      </clone>
      <primitive class="ocf" id="rsc14b" provider="pacemaker" type="Dummy">
        <operations>
          <op id="rsc14b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
          <op id="rsc14b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
          <op id="rsc14b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
          <op id="rsc14b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
          <op id="rsc14b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
          <op id="rsc14b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
        </operations>
      </primitive>
      <clone id="rsc14a-clone">
        <primitive class="ocf" id="rsc14a" provider="pacemaker" type="Stateful">
          <meta_attributes id="rsc14a-meta_attributes">
            <nvpair id="rsc14a-meta_attributes-migration-threshold" name="migration-threshold" value="3"/>
          </meta_attributes>
          <operations>
            <op id="rsc14a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
            <op id="rsc14a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
            <op id="rsc14a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s" role="Unpromoted"/>
            <op id="rsc14a-monitor-interval-11s" interval="11s" name="monitor" timeout="20s" role="Promoted"/>
            <op id="rsc14a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
            <op id="rsc14a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
            <op id="rsc14a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
          </operations>
        </primitive>
        <meta_attributes id="rsc14a-clone-meta_attributes">
          <nvpair id="rsc14a-clone-meta_attributes-promotable" name="promotable" value="true"/>
        </meta_attributes>
      </clone>
    </resources>
    <constraints>
      <rsc_colocation id="colocation-rsc1a-rsc1b-INFINITY" rsc="rsc1a" score="INFINITY" with-rsc="rsc1b" influence="invalid"/>
      <rsc_colocation id="colocation-rsc2a-rsc2b-INFINITY" rsc="rsc2a" score="INFINITY" with-rsc="rsc2b" influence="false"/>
      <rsc_colocation id="colocation-rsc3a-rsc3b-INFINITY" rsc="rsc3a" score="INFINITY" with-rsc="rsc3b" influence="false"/>
      <rsc_colocation id="colocation-rsc4a-rsc4b-INFINITY" rsc="rsc4a" score="INFINITY" with-rsc="rsc4b"/>
      <rsc_colocation id="colocation-rsc5a-group5a-INFINITY" rsc="rsc5a" score="INFINITY" with-rsc="group5a" influence="false"/>
      <rsc_colocation id="colocation-group6a-rsc6a-INFINITY" rsc="group6a" score="INFINITY" with-rsc="rsc6a" influence="false"/>
      <rsc_colocation id="colocation-rsc8a-clone-rsc8b-clone-INFINITY" rsc="rsc8a-clone" score="INFINITY" with-rsc="rsc8b-clone" influence="false"/>
      <rsc_colocation id="colocation_set_rarbrc" score="INFINITY" influence="false">
        <resource_set id="colocation_set_rarbrc_set">
          <resource_ref id="rsc9a"/>
          <resource_ref id="rsc9b"/>
          <resource_ref id="rsc9c"/>
        </resource_set>
      </rsc_colocation>
      <rsc_colocation id="colocation-rsc10a-bundle10-INFINITY" rsc="rsc10a" score="INFINITY" with-rsc="bundle10" influence="false"/>
      <rsc_colocation id="colocation-bundle11-rsc11a-INFINITY" rsc="bundle11" score="INFINITY" with-rsc="rsc11a" influence="false"/>
      <rsc_colocation id="colocation-rsc12a-rsc12c-INFINITY" rsc="tag12" score="INFINITY" with-rsc="rsc12c" influence="false"/>
      <rsc_colocation id="colocation-rsc13a-rsc13b-clone-INFINITY" rsc="rsc13a" rsc-role="Started" score="INFINITY" with-rsc="rsc13b-clone" with-rsc-role="Promoted" influence="false"/>
      <rsc_colocation id="colocation-rsc14a-clone-rsc14b-INFINITY" rsc="rsc14a-clone" rsc-role="Promoted" score="INFINITY" with-rsc="rsc14b" with-rsc-role="Started" influence="false"/>
      <rsc_location id="location-rsc3b-rhel7-5-INFINITY" node="rhel7-5" rsc="rsc3b" score="INFINITY"/>
      <rsc_location id="location-ban" node="rhel7-5" rsc-pattern="!rsc3.*" score="-INFINITY"/>
    </constraints>
    <fencing-topology/>
    <tags>
      <tag id="tag12">
        <obj_ref id="rsc12a"/>
        <obj_ref id="rsc12b"/>
      </tag>
    </tags>
    <op_defaults>
      <meta_attributes id="cts-op_defaults-meta">
        <nvpair id="cts-op_defaults-timeout" name="timeout" value="90s"/>
      </meta_attributes>
    </op_defaults>
    <alerts>
      <alert id="alert-1" path="/var/lib/pacemaker/notify.sh">
        <recipient id="alert-1-recipient-1" value="/run/crm/alert.log"/>
      </alert>
    </alerts>
    <rsc_defaults>
      <meta_attributes id="rsc_defaults-options">
        <nvpair id="rsc_defaults-options-migration-threshold" name="migration-threshold" value="2"/>
        <nvpair id="rsc_defaults-options-resource-stickiness" name="resource-stickiness" value="10"/>
      </meta_attributes>
    </rsc_defaults>
  </configuration>
  <status>
    <node_state id="3" uname="rhel7-3" in_ccm="true" crmd="online" crm-debug-origin="do_state_transition" join="member" expected="member">
      <transient_attributes id="3">
        <instance_attributes id="status-3">
          <nvpair id="status-3-promoted-rsc13b" name="master-rsc13b" value="10"/>
          <nvpair id="status-3-promoted-rsc14a" name="master-rsc14a" value="5"/>
          <nvpair id="status-3-fail-count-rsc7a2.asyncmon_0" name="fail-count-rsc7a2#asyncmon_0" value="2"/>
          <nvpair id="status-3-last-failure-rsc7a2.asyncmon_0" name="last-failure-rsc7a2#asyncmon_0" value="1608666508"/>
          <nvpair id="status-3-fail-count-rsc4a.asyncmon_0" name="fail-count-rsc4a#asyncmon_0" value="2"/>
          <nvpair id="status-3-last-failure-rsc4a.asyncmon_0" name="last-failure-rsc4a#asyncmon_0" value="1608666700"/>
          <nvpair id="status-3-fail-count-rsc13a.asyncmon_0" name="fail-count-rsc13a#asyncmon_0" value="2"/>
          <nvpair id="status-3-last-failure-rsc13a.asyncmon_0" name="last-failure-rsc13a#asyncmon_0" value="1608667124"/>
        </instance_attributes>
      </transient_attributes>
      <lrm id="3">
        <lrm_resources>
          <lrm_resource id="rsc1a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc1a_last_0" operation_key="rsc1a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="88:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;88:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="73" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc1b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc1b_last_0" operation_key="rsc1b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="89:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;89:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="71" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc3b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc3b_last_0" operation_key="rsc3b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="93:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;93:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="33" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="35" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc5a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a_last_0" operation_key="rsc5a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="96:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;96:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="45" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="35" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc3a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc3a_last_0" operation_key="rsc3a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="92:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;92:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="29" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="34" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9a_last_0" operation_key="rsc9a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="106:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;106:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="91" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="68" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9c" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9c_last_0" operation_key="rsc9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="108:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;108:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="99" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="56" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-0" type="remote" class="ocf" provider="pacemaker" container="bundle11-docker-0">
            <lrm_rsc_op id="bundle11-0_last_0" operation_key="bundle11-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="48:2:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;48:2:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1608662184" last-run="1608662184" exec-time="0" queue-time="0" op-digest="269547ac0372340e5394c2e0ae418d1b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9b_last_0" operation_key="rsc9b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="107:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;107:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="95" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="61" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc11a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc11a_last_0" operation_key="rsc11a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="110:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;110:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="107" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="38" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc13a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc13a_last_failure_0" operation_key="rsc13a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="204:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;204:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-3" call-id="204" rc-code="1" op-status="0" interval="0" last-rc-change="1608667124" last-run="1608667124" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc13a_last_0" operation_key="rsc13a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="178:54:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;178:54:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="267" rc-code="0" op-status="0" interval="0" last-rc-change="1608667125" last-run="1608667125" exec-time="25" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc13a_monitor_10000" operation_key="rsc13a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="1:54:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;1:54:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="269" rc-code="0" op-status="0" interval="10000" last-rc-change="1608667125" exec-time="23" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc13b" type="Stateful" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc13b_last_0" operation_key="rsc13b_promote_0" operation="promote" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="184:7:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;184:7:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="208" rc-code="0" op-status="0" interval="0" last-rc-change="1608662188" last-run="1608662188" exec-time="57" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc13b_monitor_11000" operation_key="rsc13b_monitor_11000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="183:55:8:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:8;183:55:8:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="271" rc-code="8" op-status="0" interval="11000" last-rc-change="1608667440" exec-time="24" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
          </lrm_resource>
          <lrm_resource id="bundle10-0" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-0">
            <lrm_rsc_op id="bundle10-0_last_0" operation_key="bundle10-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="46:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;46:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="bd3b59fd6cf7aabf0f8a6eed8a0e2a71" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc7a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc7a1_last_0" operation_key="rsc7a1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="250:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;250:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="124" rc-code="0" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="76" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc7a1_monitor_10000" operation_key="rsc7a1_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="251:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;251:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="126" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662179" exec-time="68" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc7a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc7a2_last_failure_0" operation_key="rsc7a2_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="131:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;131:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-3" call-id="131" rc-code="1" op-status="0" interval="0" last-rc-change="1608666508" last-run="1608666508" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc7a2_last_0" operation_key="rsc7a2_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="94:26:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;94:26:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="244" rc-code="0" op-status="0" interval="0" last-rc-change="1608666508" last-run="1608666508" exec-time="29" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc7a2_monitor_10000" operation_key="rsc7a2_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="4:26:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;4:26:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="246" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666508" exec-time="28" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-1" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-1">
            <lrm_rsc_op id="bundle10-1_last_0" operation_key="bundle10-1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="142:5:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;142:5:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="4" rc-code="0" op-status="0" interval="0" last-rc-change="1608662186" last-run="1608662186" exec-time="0" queue-time="0" op-digest="98c4879a95dbe1b4a991ce576dd25733" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="bundle10-1_monitor_30000" operation_key="bundle10-1_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="146:7:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;146:7:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="5" rc-code="0" op-status="0" interval="30000" last-rc-change="1608662188" exec-time="0" queue-time="0" op-digest="3ad2e1d8539d1e6893d4a32eaae0c4de"/>
          </lrm_resource>
          <lrm_resource id="bundle10-ip-192.168.122.131" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-ip-192.168.122.131_last_0" operation_key="bundle10-ip-192.168.122.131_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="114:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;114:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="123" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="242" queue-time="0" op-digest="8656419d4ed26465c724189832393477"/>
          </lrm_resource>
          <lrm_resource id="bundle10-ip-192.168.122.132" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-ip-192.168.122.132_last_0" operation_key="bundle10-ip-192.168.122.132_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="304:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;304:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="177" rc-code="0" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="317" queue-time="0" op-digest="c3d96a2922c2946905f760df9a177cd1"/>
            <lrm_rsc_op id="bundle10-ip-192.168.122.132_monitor_60000" operation_key="bundle10-ip-192.168.122.132_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="305:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;305:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="179" rc-code="0" op-status="0" interval="60000" last-rc-change="1608662182" exec-time="168" queue-time="0" op-digest="d35d9d188df006e76b4a9cc497a32049"/>
          </lrm_resource>
          <lrm_resource id="rsc2a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc2a_last_0" operation_key="rsc2a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="52:30:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;52:30:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="252" rc-code="7" op-status="0" interval="0" last-rc-change="1608666667" last-run="1608666667" exec-time="22" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc2b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc2b_last_0" operation_key="rsc2b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="66:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;66:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="219" rc-code="0" op-status="0" interval="0" last-rc-change="1608666404" last-run="1608666404" exec-time="53" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc4a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc4a_last_failure_0" operation_key="rsc4a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="238:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;238:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-3" call-id="238" rc-code="1" op-status="0" interval="0" last-rc-change="1608666700" last-run="1608666700" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc4a_last_0" operation_key="rsc4a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="66:35:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;66:35:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="258" rc-code="0" op-status="0" interval="0" last-rc-change="1608666700" last-run="1608666700" exec-time="29" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc4a_monitor_10000" operation_key="rsc4a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="6:35:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;6:35:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="260" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666700" exec-time="23" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc8a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc8a_last_0" operation_key="rsc8a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="262:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;262:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="132" rc-code="0" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="75" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc8a_monitor_10000" operation_key="rsc8a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="263:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;263:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="134" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662180" exec-time="62" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-docker-0" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-docker-0_last_0" operation_key="bundle10-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="115:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;115:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="143" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="305" queue-time="0" op-digest="2c1359b7f24998fceaacce59586cfde8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-docker-1" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-docker-1_last_0" operation_key="bundle10-docker-1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="306:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;306:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="181" rc-code="0" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="1165" queue-time="0" op-digest="5dbf2069db92246c65ac9d645a9d431d"/>
            <lrm_rsc_op id="bundle10-docker-1_monitor_60000" operation_key="bundle10-docker-1_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="154:1:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;154:1:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="184" rc-code="0" op-status="0" interval="60000" last-rc-change="1608662183" exec-time="242" queue-time="0" op-digest="6f623154f20a0518c385f28967eb507a"/>
          </lrm_resource>
          <lrm_resource id="rsc6a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a2_last_0" operation_key="rsc6a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="100:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;100:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="65" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="72" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc8b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc8b_last_0" operation_key="rsc8b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="274:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;274:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="136" rc-code="0" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="107" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc8b_monitor_10000" operation_key="rsc8b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="275:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;275:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="138" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662180" exec-time="46" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc4b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc4b_last_0" operation_key="rsc4b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="73:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;73:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="223" rc-code="0" op-status="0" interval="0" last-rc-change="1608666404" last-run="1608666404" exec-time="66" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc4b_monitor_10000" operation_key="rsc4b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="74:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;74:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="226" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666404" exec-time="100" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="Fencing" type="fence_xvm" class="stonith">
            <lrm_rsc_op id="Fencing_last_0" operation_key="Fencing_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="87:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;87:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="10" queue-time="0" op-digest="422e90c96b7732222706b322138f43c8"/>
          </lrm_resource>
          <lrm_resource id="rsc6a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a1_last_0" operation_key="rsc6a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="99:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;99:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="61" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="71" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc10a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc10a_last_0" operation_key="rsc10a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="109:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;109:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="103" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="43" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12a_last_0" operation_key="rsc12a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="111:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;111:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="111" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="39" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12b_last_0" operation_key="rsc12b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="112:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;112:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="115" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="49" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12c" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12c_last_0" operation_key="rsc12c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="113:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;113:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="119" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="67" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc14b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc14b_last_0" operation_key="rsc14b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="48:3:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;48:3:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="193" rc-code="7" op-status="0" interval="0" last-rc-change="1608662185" last-run="1608662185" exec-time="21" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc14a" type="Stateful" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc14a_last_0" operation_key="rsc14a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="202:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;202:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="199" rc-code="0" op-status="0" interval="0" last-rc-change="1608662185" last-run="1608662185" exec-time="64" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc14a_monitor_10000" operation_key="rsc14a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="205:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;205:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="210" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662188" exec-time="25" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
          </lrm_resource>
          <lrm_resource id="rsc6a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a_last_0" operation_key="rsc6a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="101:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;101:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="69" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="76" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-docker-1" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-docker-1_last_0" operation_key="bundle11-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="124:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;124:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="167" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="137" queue-time="0" op-digest="8d3651c56ba0fdc98d0b45ffb590226e"/>
          </lrm_resource>
          <lrm_resource id="rsc5a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a1_last_0" operation_key="rsc5a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="97:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;97:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="49" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="39" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc5a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a2_last_0" operation_key="rsc5a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="98:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;98:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="57" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="84" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-docker-0" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-docker-0_last_0" operation_key="bundle11-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="121:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;121:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="159" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="102" queue-time="0" op-digest="f1b936bf51a44fa14e140fa5c05411d3"/>
          </lrm_resource>
          <lrm_resource id="bundle11-ip-192.168.122.134" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-ip-192.168.122.134_last_0" operation_key="bundle11-ip-192.168.122.134_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="120:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;120:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="155" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="83" queue-time="0" op-digest="4b105bfe443dd9dd577360067aa8ab0f"/>
          </lrm_resource>
          <lrm_resource id="bundle11-ip-192.168.122.135" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-ip-192.168.122.135_last_0" operation_key="bundle11-ip-192.168.122.135_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="123:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;123:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="163" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="95" queue-time="0" op-digest="d41ab06b142cfb1ec4fb12415f81ff48"/>
          </lrm_resource>
        </lrm_resources>
      </lrm>
    </node_state>
    <node_state id="4" uname="rhel7-4" in_ccm="true" crmd="online" crm-debug-origin="do_update_resource" join="member" expected="member">
      <transient_attributes id="4">
        <instance_attributes id="status-4">
          <nvpair id="status-4-promoted-rsc13b" name="master-rsc13b" value="5"/>
          <nvpair id="status-4-fail-count-rsc2a.asyncmon_0" name="fail-count-rsc2a#asyncmon_0" value="2"/>
          <nvpair id="status-4-last-failure-rsc2a.asyncmon_0" name="last-failure-rsc2a#asyncmon_0" value="1608666673"/>
          <nvpair id="status-4-fail-count-rsc8a.monitor_10000" name="fail-count-rsc8a#monitor_10000" value="2"/>
          <nvpair id="status-4-last-failure-rsc8a.monitor_10000" name="last-failure-rsc8a#monitor_10000" value="1608666848"/>
          <nvpair id="status-4-fail-count-rsc9c.asyncmon_0" name="fail-count-rsc9c#asyncmon_0" value="2"/>
          <nvpair id="status-4-last-failure-rsc9c.asyncmon_0" name="last-failure-rsc9c#asyncmon_0" value="1608666876"/>
          <nvpair id="status-4-fail-count-rsc14a.monitor_11000" name="fail-count-rsc14a#monitor_11000" value="2"/>
          <nvpair id="status-4-last-failure-rsc14a.monitor_11000" name="last-failure-rsc14a#monitor_11000" value="1608667795"/>
          <nvpair id="status-4-fail-count-rsc14a.demote_0" name="fail-count-rsc14a#demote_0" value="2"/>
          <nvpair id="status-4-last-failure-rsc14a.demote_0" name="last-failure-rsc14a#demote_0" value="1608667796"/>
          <nvpair id="status-4-promoted-rsc14a" name="master-rsc14a" value="10"/>
        </instance_attributes>
      </transient_attributes>
      <lrm id="4">
        <lrm_resources>
          <lrm_resource id="rsc1a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc1a_last_0" operation_key="rsc1a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="131:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;131:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="32" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc1b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc1b_last_0" operation_key="rsc1b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="132:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;132:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="26" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc3b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc3b_last_0" operation_key="rsc3b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="136:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;136:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="29" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="27" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc5a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a_last_0" operation_key="rsc5a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="139:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;139:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="41" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="37" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc3a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc3a_last_0" operation_key="rsc3a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="135:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;135:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="25" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="43" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9a_last_0" operation_key="rsc9a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="282:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;282:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="128" rc-code="0" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="88" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc9a_monitor_10000" operation_key="rsc9a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="283:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;283:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="130" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662180" exec-time="102" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9c" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9c_last_failure_0" operation_key="rsc9c_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="139:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;139:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-4" call-id="139" rc-code="1" op-status="0" interval="0" last-rc-change="1608666876" last-run="1608666876" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc9c_last_0" operation_key="rsc9c_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="122:46:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;122:46:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="291" rc-code="0" op-status="0" interval="0" last-rc-change="1608666876" last-run="1608666876" exec-time="25" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc9c_monitor_10000" operation_key="rsc9c_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="13:46:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;13:46:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="293" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666876" exec-time="24" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-0" type="remote" class="ocf" provider="pacemaker" container="bundle11-docker-0">
            <lrm_rsc_op id="bundle11-0_last_0" operation_key="bundle11-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="54:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;54:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="269547ac0372340e5394c2e0ae418d1b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9b_last_0" operation_key="rsc9b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="284:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;284:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="132" rc-code="0" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="90" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc9b_monitor_10000" operation_key="rsc9b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="285:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;285:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="134" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662180" exec-time="108" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc11a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc11a_last_0" operation_key="rsc11a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="153:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;153:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="107" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="62" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc13a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc13a_last_0" operation_key="rsc13a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="179:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;179:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="213" rc-code="0" op-status="0" interval="0" last-rc-change="1608662185" last-run="1608662185" exec-time="102" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc13b" type="Stateful" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc13b_last_0" operation_key="rsc13b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="346:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;346:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="197" rc-code="0" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="70" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc13b_monitor_10000" operation_key="rsc13b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="187:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;187:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="216" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662185" exec-time="56" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
          </lrm_resource>
          <lrm_resource id="bundle10-0" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-0">
            <lrm_rsc_op id="bundle10-0_last_0" operation_key="bundle10-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="52:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;52:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="bd3b59fd6cf7aabf0f8a6eed8a0e2a71" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc7a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc7a1_last_0" operation_key="rsc7a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="145:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;145:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="65" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="90" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc7a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc7a2_last_0" operation_key="rsc7a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="146:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;146:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="77" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="85" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-1" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-1">
            <lrm_rsc_op id="bundle10-1_last_0" operation_key="bundle10-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="53:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;53:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="98c4879a95dbe1b4a991ce576dd25733" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-ip-192.168.122.131" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-ip-192.168.122.131_last_0" operation_key="bundle10-ip-192.168.122.131_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="157:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;157:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="155" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="116" queue-time="0" op-digest="8656419d4ed26465c724189832393477"/>
          </lrm_resource>
          <lrm_resource id="bundle10-ip-192.168.122.132" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-ip-192.168.122.132_last_0" operation_key="bundle10-ip-192.168.122.132_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="160:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;160:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="163" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="135" queue-time="0" op-digest="c3d96a2922c2946905f760df9a177cd1"/>
          </lrm_resource>
          <lrm_resource id="rsc2a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc2a_last_failure_0" operation_key="rsc2a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="236:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;236:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-4" call-id="236" rc-code="1" op-status="0" interval="0" last-rc-change="1608666673" last-run="1608666673" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc2a_last_0" operation_key="rsc2a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="62:32:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;62:32:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="268" rc-code="0" op-status="0" interval="0" last-rc-change="1608666673" last-run="1608666673" exec-time="24" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc2a_monitor_10000" operation_key="rsc2a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="16:32:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;16:32:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="270" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666673" exec-time="22" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc2b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc2b_last_0" operation_key="rsc2b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="67:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;67:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="233" rc-code="0" op-status="0" interval="0" last-rc-change="1608666404" last-run="1608666404" exec-time="72" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc2b_monitor_10000" operation_key="rsc2b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="68:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;68:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="237" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666404" exec-time="66" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc4a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc4a_last_0" operation_key="rsc4a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="53:33:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;53:33:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="276" rc-code="7" op-status="0" interval="0" last-rc-change="1608666695" last-run="1608666695" exec-time="48" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc8a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc8a_last_failure_0" operation_key="rsc8a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="259:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;259:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="118" rc-code="7" op-status="0" interval="10000" last-rc-change="1608666848" exec-time="0" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc8a_last_0" operation_key="rsc8a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="100:44:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;100:44:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="282" rc-code="0" op-status="0" interval="0" last-rc-change="1608666849" last-run="1608666849" exec-time="26" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc8a_monitor_10000" operation_key="rsc8a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="18:44:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;18:44:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="284" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666849" exec-time="23" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-docker-0" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-docker-0_last_0" operation_key="bundle10-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="158:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;158:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="159" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="190" queue-time="0" op-digest="2c1359b7f24998fceaacce59586cfde8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-docker-1" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-docker-1_last_0" operation_key="bundle10-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="161:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;161:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="167" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="172" queue-time="0" op-digest="5dbf2069db92246c65ac9d645a9d431d"/>
          </lrm_resource>
          <lrm_resource id="rsc6a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a2_last_0" operation_key="rsc6a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="143:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;143:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="57" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="115" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc8b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc8b_last_0" operation_key="rsc8b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="270:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;270:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="120" rc-code="0" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="81" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc8b_monitor_10000" operation_key="rsc8b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="271:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;271:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="122" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662180" exec-time="88" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc4b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc4b_last_0" operation_key="rsc4b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="72:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;72:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="227" rc-code="0" op-status="0" interval="0" last-rc-change="1608666404" last-run="1608666404" exec-time="83" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="Fencing" type="fence_xvm" class="stonith">
            <lrm_rsc_op id="Fencing_last_0" operation_key="Fencing_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="130:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;130:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="9" queue-time="0" op-digest="422e90c96b7732222706b322138f43c8"/>
          </lrm_resource>
          <lrm_resource id="rsc6a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a1_last_0" operation_key="rsc6a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="142:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;142:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="53" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="125" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc10a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc10a_last_0" operation_key="rsc10a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="152:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;152:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="103" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="53" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12a_last_0" operation_key="rsc12a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="131:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;131:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="244" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="200" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12b_last_0" operation_key="rsc12b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="134:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;134:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="246" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="182" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12c" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12c_last_0" operation_key="rsc12c_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="128:28:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;128:28:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="252" rc-code="0" op-status="0" interval="0" last-rc-change="1608666621" last-run="1608666621" exec-time="135" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc14b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc14b_last_0" operation_key="rsc14b_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="199:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;199:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="338" rc-code="0" op-status="0" interval="0" last-rc-change="1608667874" last-run="1608667874" exec-time="52" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc14b_monitor_10000" operation_key="rsc14b_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="198:74:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;198:74:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="340" rc-code="0" op-status="0" interval="10000" last-rc-change="1608667874" exec-time="74" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc14a" type="Stateful" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc14a_last_failure_0" operation_key="rsc14a_demote_0" operation="demote" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="204:68:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;204:68:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="329" rc-code="7" op-status="0" interval="0" last-rc-change="1608667795" last-run="1608667795" exec-time="50" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc14a_last_0" operation_key="rsc14a_promote_0" operation="promote" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="204:75:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;204:75:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="344" rc-code="0" op-status="0" interval="0" last-rc-change="1608667874" last-run="1608667874" exec-time="72" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc14a_monitor_11000" operation_key="rsc14a_monitor_11000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="206:76:8:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:8;206:76:8:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="346" rc-code="8" op-status="0" interval="11000" last-rc-change="1608667874" exec-time="47" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
          </lrm_resource>
          <lrm_resource id="rsc6a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a_last_0" operation_key="rsc6a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="144:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;144:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="61" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="94" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-docker-1" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-docker-1_last_0" operation_key="bundle11-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="167:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;167:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="183" rc-code="7" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="85" queue-time="0" op-digest="8d3651c56ba0fdc98d0b45ffb590226e"/>
          </lrm_resource>
          <lrm_resource id="rsc5a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a1_last_0" operation_key="rsc5a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="140:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;140:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="45" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="70" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc5a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a2_last_0" operation_key="rsc5a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="141:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;141:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="49" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="121" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-docker-0" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-docker-0_last_0" operation_key="bundle11-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="164:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;164:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="175" rc-code="7" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="76" queue-time="0" op-digest="f1b936bf51a44fa14e140fa5c05411d3"/>
          </lrm_resource>
          <lrm_resource id="bundle11-ip-192.168.122.134" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-ip-192.168.122.134_last_0" operation_key="bundle11-ip-192.168.122.134_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="163:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;163:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="171" rc-code="7" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="114" queue-time="0" op-digest="4b105bfe443dd9dd577360067aa8ab0f"/>
          </lrm_resource>
          <lrm_resource id="bundle11-ip-192.168.122.135" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-ip-192.168.122.135_last_0" operation_key="bundle11-ip-192.168.122.135_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="166:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;166:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="179" rc-code="7" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="103" queue-time="0" op-digest="d41ab06b142cfb1ec4fb12415f81ff48"/>
          </lrm_resource>
        </lrm_resources>
      </lrm>
    </node_state>
    <node_state id="5" uname="rhel7-5" in_ccm="true" crmd="online" crm-debug-origin="do_state_transition" join="member" expected="member">
      <transient_attributes id="5">
        <instance_attributes id="status-5">
          <nvpair id="status-5-fail-count-rsc3a.asyncmon_0" name="fail-count-rsc3a#asyncmon_0" value="2"/>
          <nvpair id="status-5-last-failure-rsc3a.asyncmon_0" name="last-failure-rsc3a#asyncmon_0" value="1608666416"/>
        </instance_attributes>
      </transient_attributes>
      <lrm id="5">
        <lrm_resources>
          <lrm_resource id="rsc1a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc1a_last_0" operation_key="rsc1a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="174:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;174:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="24" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc1b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc1b_last_0" operation_key="rsc1b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="175:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;175:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="26" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc3b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc3b_last_0" operation_key="rsc3b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="179:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;179:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="29" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="27" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc5a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a_last_0" operation_key="rsc5a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="182:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;182:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="41" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="35" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc3a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc3a_last_failure_0" operation_key="rsc3a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="26:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;26:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-5" call-id="26" rc-code="1" op-status="0" interval="0" last-rc-change="1608666416" last-run="1608666416" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc3a_last_0" operation_key="rsc3a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="24:18:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;24:18:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="166" rc-code="0" op-status="0" interval="0" last-rc-change="1608666417" last-run="1608666417" exec-time="23" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9a_last_0" operation_key="rsc9a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="192:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;192:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="83" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="45" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9c" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9c_last_0" operation_key="rsc9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="194:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;194:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="91" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="75" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-0" type="remote" class="ocf" provider="pacemaker" container="bundle11-docker-0">
            <lrm_rsc_op id="bundle11-0_last_0" operation_key="bundle11-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="59:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;59:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="269547ac0372340e5394c2e0ae418d1b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9b_last_0" operation_key="rsc9b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="193:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;193:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="87" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="54" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc11a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc11a_last_0" operation_key="rsc11a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="196:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;196:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="99" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="76" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc13a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc13a_last_0" operation_key="rsc13a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="212:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;212:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="147" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="43" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc13b" type="Stateful" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc13b_last_0" operation_key="rsc13b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="213:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;213:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="152" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="54" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-0" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-0">
            <lrm_rsc_op id="bundle10-0_last_0" operation_key="bundle10-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="57:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;57:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="bd3b59fd6cf7aabf0f8a6eed8a0e2a71" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc7a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc7a1_last_0" operation_key="rsc7a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="188:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;188:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="65" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="35" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc7a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc7a2_last_0" operation_key="rsc7a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="189:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;189:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="69" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="28" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-1" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-1">
            <lrm_rsc_op id="bundle10-1_last_0" operation_key="bundle10-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="58:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;58:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="98c4879a95dbe1b4a991ce576dd25733" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-ip-192.168.122.131" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-ip-192.168.122.131_last_0" operation_key="bundle10-ip-192.168.122.131_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="200:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;200:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="115" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="249" queue-time="0" op-digest="8656419d4ed26465c724189832393477"/>
          </lrm_resource>
          <lrm_resource id="bundle10-ip-192.168.122.132" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-ip-192.168.122.132_last_0" operation_key="bundle10-ip-192.168.122.132_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="203:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;203:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="123" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="214" queue-time="0" op-digest="c3d96a2922c2946905f760df9a177cd1"/>
          </lrm_resource>
          <lrm_resource id="rsc2a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc2a_last_0" operation_key="rsc2a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="176:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;176:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="17" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="36" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc2b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc2b_last_0" operation_key="rsc2b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="177:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;177:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="21" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="28" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc4a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc4a_last_0" operation_key="rsc4a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="180:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;180:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="33" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="38" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc8a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc8a_last_0" operation_key="rsc8a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="190:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;190:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="74" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="39" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-docker-0" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-docker-0_last_0" operation_key="bundle10-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="201:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;201:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="119" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="241" queue-time="0" op-digest="2c1359b7f24998fceaacce59586cfde8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-docker-1" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-docker-1_last_0" operation_key="bundle10-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="204:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;204:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="127" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="239" queue-time="0" op-digest="5dbf2069db92246c65ac9d645a9d431d"/>
          </lrm_resource>
          <lrm_resource id="rsc6a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a2_last_0" operation_key="rsc6a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="186:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;186:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="57" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="33" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc8b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc8b_last_0" operation_key="rsc8b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="191:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;191:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="79" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="36" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc4b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc4b_last_0" operation_key="rsc4b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="181:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;181:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="37" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="32" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="Fencing" type="fence_xvm" class="stonith">
            <lrm_rsc_op id="Fencing_last_0" operation_key="Fencing_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="173:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;173:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="5" queue-time="0" op-digest="422e90c96b7732222706b322138f43c8"/>
          </lrm_resource>
          <lrm_resource id="rsc6a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a1_last_0" operation_key="rsc6a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="185:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;185:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="53" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="44" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc10a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc10a_last_0" operation_key="rsc10a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="195:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;195:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="95" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="76" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12a_last_0" operation_key="rsc12a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="197:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;197:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="103" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="67" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12b_last_0" operation_key="rsc12b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="198:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;198:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="107" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="70" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12c" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12c_last_0" operation_key="rsc12c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="199:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;199:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="111" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="75" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc14b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc14b_last_0" operation_key="rsc14b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="214:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;214:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="156" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="31" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc14a" type="Stateful" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc14a_last_0" operation_key="rsc14a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="215:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;215:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="161" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="45" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc6a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a_last_0" operation_key="rsc6a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="187:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;187:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="61" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="42" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-docker-1" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-docker-1_last_0" operation_key="bundle11-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="210:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;210:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="143" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="182" queue-time="0" op-digest="8d3651c56ba0fdc98d0b45ffb590226e"/>
          </lrm_resource>
          <lrm_resource id="rsc5a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a1_last_0" operation_key="rsc5a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="183:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;183:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="45" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="23" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc5a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a2_last_0" operation_key="rsc5a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="184:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;184:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="49" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="34" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-docker-0" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-docker-0_last_0" operation_key="bundle11-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="207:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;207:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="135" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="211" queue-time="0" op-digest="f1b936bf51a44fa14e140fa5c05411d3"/>
          </lrm_resource>
          <lrm_resource id="bundle11-ip-192.168.122.134" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-ip-192.168.122.134_last_0" operation_key="bundle11-ip-192.168.122.134_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="206:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;206:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="131" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="202" queue-time="0" op-digest="4b105bfe443dd9dd577360067aa8ab0f"/>
          </lrm_resource>
          <lrm_resource id="bundle11-ip-192.168.122.135" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-ip-192.168.122.135_last_0" operation_key="bundle11-ip-192.168.122.135_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="209:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;209:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="139" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="235" queue-time="0" op-digest="d41ab06b142cfb1ec4fb12415f81ff48"/>
          </lrm_resource>
        </lrm_resources>
      </lrm>
    </node_state>
    <node_state id="1" uname="rhel7-1" in_ccm="true" crmd="online" crm-debug-origin="do_state_transition" join="member" expected="member">
      <transient_attributes id="1">
        <instance_attributes id="status-1">
          <nvpair id="status-1-promoted-rsc13b" name="master-rsc13b" value="5"/>
          <nvpair id="status-1-promoted-rsc14a" name="master-rsc14a" value="5"/>
          <nvpair id="status-1-fail-count-rsc5a.asyncmon_0" name="fail-count-rsc5a#asyncmon_0" value="2"/>
          <nvpair id="status-1-last-failure-rsc5a.asyncmon_0" name="last-failure-rsc5a#asyncmon_0" value="1608666747"/>
          <nvpair id="status-1-fail-count-rsc12b.asyncmon_0" name="fail-count-rsc12b#asyncmon_0" value="2"/>
          <nvpair id="status-1-last-failure-rsc12b.asyncmon_0" name="last-failure-rsc12b#asyncmon_0" value="1608667111"/>
        </instance_attributes>
      </transient_attributes>
      <lrm id="1">
        <lrm_resources>
          <lrm_resource id="rsc1a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc1a_last_0" operation_key="rsc1a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="2:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;2:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="42" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc1b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc1b_last_0" operation_key="rsc1b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="3:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;3:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="17" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="38" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc3b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc3b_last_0" operation_key="rsc3b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="7:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;7:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="33" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="36" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc5a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a_last_failure_0" operation_key="rsc5a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="304:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;304:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-1" call-id="304" rc-code="1" op-status="0" interval="0" last-rc-change="1608666747" last-run="1608666747" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc5a_last_0" operation_key="rsc5a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="70:43:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;70:43:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="310" rc-code="0" op-status="0" interval="0" last-rc-change="1608666748" last-run="1608666748" exec-time="26" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc5a_monitor_10000" operation_key="rsc5a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="32:43:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;32:43:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="312" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666748" exec-time="24" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc3a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc3a_last_0" operation_key="rsc3a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="6:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;6:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="29" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="31" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9a_last_0" operation_key="rsc9a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="20:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;20:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="87" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="26" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9c" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9c_last_0" operation_key="rsc9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="22:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;22:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="95" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="32" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-0" type="remote" class="ocf" provider="pacemaker" container="bundle11-docker-0">
            <lrm_rsc_op id="bundle11-0_last_0" operation_key="bundle11-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="172:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;172:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="7" rc-code="0" op-status="0" interval="0" last-rc-change="1608666975" last-run="1608666975" exec-time="0" queue-time="0" op-digest="269547ac0372340e5394c2e0ae418d1b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="bundle11-0_monitor_30000" operation_key="bundle11-0_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="160:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;160:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="8" rc-code="0" op-status="0" interval="30000" last-rc-change="1608666976" exec-time="0" queue-time="0" op-digest="da52cb1b0828f079e099303157e8fc28"/>
          </lrm_resource>
          <lrm_resource id="rsc9b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9b_last_0" operation_key="rsc9b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="21:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;21:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="91" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="32" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc11a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc11a_last_0" operation_key="rsc11a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="127:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;127:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="320" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="147" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc11a_monitor_10000" operation_key="rsc11a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="128:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;128:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="322" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666893" exec-time="55" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc13a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc13a_last_0" operation_key="rsc13a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="40:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;40:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="171" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="30" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc13b" type="Stateful" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc13b_last_0" operation_key="rsc13b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="185:4:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;185:4:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="205" rc-code="0" op-status="0" interval="0" last-rc-change="1608662186" last-run="1608662186" exec-time="83" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc13b_monitor_10000" operation_key="rsc13b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="186:5:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;186:5:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="207" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662186" exec-time="35" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
          </lrm_resource>
          <lrm_resource id="bundle10-0" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-0">
            <lrm_rsc_op id="bundle10-0_last_0" operation_key="bundle10-0_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="144:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;144:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="6" rc-code="0" op-status="0" interval="0" last-rc-change="1608666894" last-run="1608666894" exec-time="0" queue-time="0" op-digest="bd3b59fd6cf7aabf0f8a6eed8a0e2a71"/>
          </lrm_resource>
          <lrm_resource id="rsc7a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc7a1_last_0" operation_key="rsc7a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="16:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;16:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="69" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="37" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc7a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc7a2_last_0" operation_key="rsc7a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="17:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;17:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="73" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="29" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-1" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-1">
            <lrm_rsc_op id="bundle10-1_last_0" operation_key="bundle10-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="42:4:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;42:4:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="4" rc-code="7" op-status="0" interval="0" last-rc-change="1608662186" last-run="1608662186" exec-time="0" queue-time="0" op-digest="98c4879a95dbe1b4a991ce576dd25733" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-ip-192.168.122.131" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-ip-192.168.122.131_last_0" operation_key="bundle10-ip-192.168.122.131_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="138:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;138:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="349" rc-code="0" op-status="0" interval="0" last-rc-change="1608666975" last-run="1608666975" exec-time="282" queue-time="0" op-digest="8656419d4ed26465c724189832393477"/>
          </lrm_resource>
          <lrm_resource id="bundle10-ip-192.168.122.132" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-ip-192.168.122.132_last_0" operation_key="bundle10-ip-192.168.122.132_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="31:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;31:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="139" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="115" queue-time="0" op-digest="c3d96a2922c2946905f760df9a177cd1"/>
          </lrm_resource>
          <lrm_resource id="rsc2a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc2a_last_0" operation_key="rsc2a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="4:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;4:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="21" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="34" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc2b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc2b_last_0" operation_key="rsc2b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="5:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;5:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="25" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="41" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc4a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc4a_last_0" operation_key="rsc4a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="8:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;8:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="37" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="36" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc8a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc8a_last_0" operation_key="rsc8a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="260:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;260:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="144" rc-code="0" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="26" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc8a_monitor_10000" operation_key="rsc8a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="261:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;261:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="146" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662179" exec-time="36" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-docker-0" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-docker-0_last_0" operation_key="bundle10-docker-0_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="141:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;141:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="340" rc-code="0" op-status="0" interval="0" last-rc-change="1608666894" last-run="1608666894" exec-time="80857" queue-time="0" op-digest="2c1359b7f24998fceaacce59586cfde8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-docker-1" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-docker-1_last_0" operation_key="bundle10-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="32:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;32:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="143" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="111" queue-time="0" op-digest="5dbf2069db92246c65ac9d645a9d431d"/>
          </lrm_resource>
          <lrm_resource id="rsc6a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a2_last_0" operation_key="rsc6a2_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="86:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;86:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="274" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="107" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc8b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc8b_last_0" operation_key="rsc8b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="272:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;272:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="148" rc-code="0" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="26" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc8b_monitor_10000" operation_key="rsc8b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="273:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;273:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="150" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662179" exec-time="39" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc4b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc4b_last_0" operation_key="rsc4b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="9:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;9:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="41" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="37" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="Fencing" type="fence_xvm" class="stonith">
            <lrm_rsc_op id="Fencing_last_0" operation_key="Fencing_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="216:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;216:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="6" rc-code="0" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="74" queue-time="0" op-digest="422e90c96b7732222706b322138f43c8"/>
            <lrm_rsc_op id="Fencing_monitor_120000" operation_key="Fencing_monitor_120000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="217:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;217:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="8" rc-code="0" op-status="0" interval="120000" last-rc-change="1608662177" exec-time="82" queue-time="0" op-digest="75eb18cbd607b3b4911f723ab1c89388"/>
          </lrm_resource>
          <lrm_resource id="rsc6a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a1_last_0" operation_key="rsc6a1_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="83:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;83:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="291" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="72" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc10a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc10a_last_0" operation_key="rsc10a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="29:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;29:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="316" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="32" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12a_last_0" operation_key="rsc12a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="130:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;130:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="324" rc-code="0" op-status="0" interval="0" last-rc-change="1608666893" last-run="1608666893" exec-time="32" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc12a_monitor_10000" operation_key="rsc12a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="131:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;131:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="326" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666893" exec-time="31" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12b_last_failure_0" operation_key="rsc12b_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="331:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;331:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-1" call-id="331" rc-code="1" op-status="0" interval="0" last-rc-change="1608667111" last-run="1608667111" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc12b_last_0" operation_key="rsc12b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="130:52:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;130:52:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="365" rc-code="0" op-status="0" interval="0" last-rc-change="1608667112" last-run="1608667112" exec-time="25" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc12b_monitor_10000" operation_key="rsc12b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="28:52:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;28:52:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="367" rc-code="0" op-status="0" interval="10000" last-rc-change="1608667112" exec-time="22" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12c" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12c_last_0" operation_key="rsc12c_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="136:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;136:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="332" rc-code="0" op-status="0" interval="0" last-rc-change="1608666893" last-run="1608666893" exec-time="28" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc12c_monitor_10000" operation_key="rsc12c_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="137:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;137:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="334" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666893" exec-time="26" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc14b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc14b_last_0" operation_key="rsc14b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="204:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;204:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="261" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="99" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc14a" type="Stateful" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc14a_last_0" operation_key="rsc14a_demote_0" operation="demote" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="213:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;213:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="263" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="136" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc14a_monitor_10000" operation_key="rsc14a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="204:28:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;204:28:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="266" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666621" exec-time="43" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
          </lrm_resource>
          <lrm_resource id="rsc6a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a_last_0" operation_key="rsc6a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="93:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;93:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="277" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="97" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-docker-1" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-docker-1_last_0" operation_key="bundle11-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="38:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;38:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="167" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="125" queue-time="0" op-digest="8d3651c56ba0fdc98d0b45ffb590226e"/>
          </lrm_resource>
          <lrm_resource id="rsc5a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a1_last_0" operation_key="rsc5a1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="74:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;74:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="282" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="115" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc5a1_monitor_10000" operation_key="rsc5a1_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="75:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;75:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="286" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666716" exec-time="139" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc5a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a2_last_0" operation_key="rsc5a2_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="77:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;77:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="288" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="165" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc5a2_monitor_10000" operation_key="rsc5a2_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="78:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;78:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="294" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666716" exec-time="46" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-docker-0" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-docker-0_last_0" operation_key="bundle11-docker-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="169:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;169:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="346" rc-code="0" op-status="0" interval="0" last-rc-change="1608666973" last-run="1608666973" exec-time="1190" queue-time="3" op-digest="f1b936bf51a44fa14e140fa5c05411d3"/>
            <lrm_rsc_op id="bundle11-docker-0_monitor_60000" operation_key="bundle11-docker-0_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="170:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;170:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="352" rc-code="0" op-status="0" interval="60000" last-rc-change="1608666975" exec-time="277" queue-time="0" op-digest="5ee875a4a29ae5512114c128d3a53fc5"/>
          </lrm_resource>
          <lrm_resource id="bundle11-ip-192.168.122.134" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-ip-192.168.122.134_last_0" operation_key="bundle11-ip-192.168.122.134_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="166:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;166:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="342" rc-code="0" op-status="0" interval="0" last-rc-change="1608666973" last-run="1608666973" exec-time="83" queue-time="0" op-digest="4b105bfe443dd9dd577360067aa8ab0f"/>
            <lrm_rsc_op id="bundle11-ip-192.168.122.134_monitor_60000" operation_key="bundle11-ip-192.168.122.134_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="167:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;167:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="344" rc-code="0" op-status="0" interval="60000" last-rc-change="1608666973" exec-time="63" queue-time="0" op-digest="163fded8c72adbcaeb8cbb10515f3d90"/>
          </lrm_resource>
          <lrm_resource id="bundle11-ip-192.168.122.135" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-ip-192.168.122.135_last_0" operation_key="bundle11-ip-192.168.122.135_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="37:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;37:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="163" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="107" queue-time="0" op-digest="d41ab06b142cfb1ec4fb12415f81ff48"/>
          </lrm_resource>
        </lrm_resources>
      </lrm>
    </node_state>
    <node_state id="2" uname="rhel7-2" in_ccm="true" crmd="online" crm-debug-origin="do_update_resource" join="member" expected="member">
      <transient_attributes id="2">
        <instance_attributes id="status-2">
          <nvpair id="status-2-promoted-rsc13b" name="master-rsc13b" value="5"/>
          <nvpair id="status-2-promoted-rsc14a" name="master-rsc14a" value="5"/>
          <nvpair id="status-2-fail-count-rsc1a.asyncmon_0" name="fail-count-rsc1a#asyncmon_0" value="2"/>
          <nvpair id="status-2-last-failure-rsc1a.asyncmon_0" name="last-failure-rsc1a#asyncmon_0" value="1608666390"/>
          <nvpair id="status-2-fail-count-rsc6a1.asyncmon_0" name="fail-count-rsc6a1#asyncmon_0" value="2"/>
          <nvpair id="status-2-last-failure-rsc6a1.asyncmon_0" name="last-failure-rsc6a1#asyncmon_0" value="1608666478"/>
          <nvpair id="status-2-fail-count-rsc10a.asyncmon_0" name="fail-count-rsc10a#asyncmon_0" value="2"/>
          <nvpair id="status-2-last-failure-rsc10a.asyncmon_0" name="last-failure-rsc10a#asyncmon_0" value="1608666892"/>
        </instance_attributes>
      </transient_attributes>
      <lrm id="2">
        <lrm_resources>
          <lrm_resource id="rsc1a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc1a_last_failure_0" operation_key="rsc1a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="21:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;21:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-2" call-id="21" rc-code="1" op-status="0" interval="0" last-rc-change="1608666390" last-run="1608666390" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc1a_last_0" operation_key="rsc1a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="60:14:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;60:14:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="223" rc-code="0" op-status="0" interval="0" last-rc-change="1608666390" last-run="1608666390" exec-time="28" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc1a_monitor_10000" operation_key="rsc1a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="36:14:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;36:14:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="225" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666390" exec-time="34" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc1b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc1b_last_0" operation_key="rsc1b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="220:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;220:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="22" rc-code="0" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="108" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc1b_monitor_10000" operation_key="rsc1b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="221:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;221:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="24" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662177" exec-time="100" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc3b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc3b_last_0" operation_key="rsc3b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="50:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;50:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="37" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="74" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc5a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a_last_0" operation_key="rsc5a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="51:41:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;51:41:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="305" rc-code="7" op-status="0" interval="0" last-rc-change="1608666741" last-run="1608666741" exec-time="19" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc3a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc3a_last_0" operation_key="rsc3a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="49:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;49:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="33" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="77" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9a_last_0" operation_key="rsc9a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="63:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;63:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="111" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="83" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc9c" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9c_last_0" operation_key="rsc9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="65:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;65:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="119" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="53" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-0" type="remote" class="ocf" provider="pacemaker" container="bundle11-docker-0">
            <lrm_rsc_op id="bundle11-0_last_0" operation_key="bundle11-0_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="171:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;171:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="6" rc-code="0" op-status="0" interval="0" last-rc-change="1608666893" last-run="1608666893" exec-time="0" queue-time="0" op-digest="269547ac0372340e5394c2e0ae418d1b"/>
          </lrm_resource>
          <lrm_resource id="rsc9b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc9b_last_0" operation_key="rsc9b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="64:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;64:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="115" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="45" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc11a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc11a_last_0" operation_key="rsc11a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="126:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;126:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="307" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="87" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc13a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc13a_last_0" operation_key="rsc13a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="83:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;83:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="179" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="23" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc13b" type="Stateful" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc13b_last_0" operation_key="rsc13b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="199:1:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;199:1:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="205" rc-code="0" op-status="0" interval="0" last-rc-change="1608662184" last-run="1608662184" exec-time="43" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc13b_monitor_10000" operation_key="rsc13b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="187:2:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;187:2:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="207" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662184" exec-time="38" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
          </lrm_resource>
          <lrm_resource id="bundle10-0" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-0">
            <lrm_rsc_op id="bundle10-0_last_0" operation_key="bundle10-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="134:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;134:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="7" rc-code="0" op-status="0" interval="0" last-rc-change="1608666976" last-run="1608666976" exec-time="0" queue-time="0" op-digest="bd3b59fd6cf7aabf0f8a6eed8a0e2a71" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="bundle10-0_monitor_30000" operation_key="bundle10-0_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="138:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;138:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="8" rc-code="0" op-status="0" interval="30000" last-rc-change="1608666979" exec-time="0" queue-time="0" op-digest="039dfa92620d65de0a455ebf46bf1bb6"/>
          </lrm_resource>
          <lrm_resource id="rsc7a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc7a1_last_0" operation_key="rsc7a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="59:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;59:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="85" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="54" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc7a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc7a2_last_0" operation_key="rsc7a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="60:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;60:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="89" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="55" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-1" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-1">
            <lrm_rsc_op id="bundle10-1_last_0" operation_key="bundle10-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="43:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;43:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="98c4879a95dbe1b4a991ce576dd25733" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-ip-192.168.122.131" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-ip-192.168.122.131_last_0" operation_key="bundle10-ip-192.168.122.131_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="139:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;139:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="338" rc-code="0" op-status="0" interval="0" last-rc-change="1608666975" last-run="1608666975" exec-time="100" queue-time="0" op-digest="8656419d4ed26465c724189832393477"/>
            <lrm_rsc_op id="bundle10-ip-192.168.122.131_monitor_60000" operation_key="bundle10-ip-192.168.122.131_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="140:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;140:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="340" rc-code="0" op-status="0" interval="60000" last-rc-change="1608666975" exec-time="173" queue-time="0" op-digest="fc520faa5d1d11c458a6d451e0e08a0e"/>
          </lrm_resource>
          <lrm_resource id="bundle10-ip-192.168.122.132" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-ip-192.168.122.132_last_0" operation_key="bundle10-ip-192.168.122.132_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="74:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;74:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="155" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="91" queue-time="0" op-digest="c3d96a2922c2946905f760df9a177cd1"/>
          </lrm_resource>
          <lrm_resource id="rsc2a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc2a_last_0" operation_key="rsc2a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="47:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;47:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="17" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="46" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc2b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc2b_last_0" operation_key="rsc2b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="48:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;48:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="29" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="90" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc4a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc4a_last_0" operation_key="rsc4a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="51:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;51:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="41" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="69" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc8a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc8a_last_0" operation_key="rsc8a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="105:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;105:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="255" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="62" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle10-docker-0" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-docker-0_last_0" operation_key="bundle10-docker-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="142:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;142:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="341" rc-code="0" op-status="0" interval="0" last-rc-change="1608666975" last-run="1608666975" exec-time="1066" queue-time="0" op-digest="2c1359b7f24998fceaacce59586cfde8"/>
            <lrm_rsc_op id="bundle10-docker-0_monitor_60000" operation_key="bundle10-docker-0_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="133:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;133:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="344" rc-code="0" op-status="0" interval="60000" last-rc-change="1608666976" exec-time="229" queue-time="0" op-digest="1aa94c0f78c956043270ed19d83c1ee5"/>
          </lrm_resource>
          <lrm_resource id="bundle10-docker-1" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle10-docker-1_last_0" operation_key="bundle10-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="75:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;75:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="159" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="81" queue-time="0" op-digest="5dbf2069db92246c65ac9d645a9d431d"/>
          </lrm_resource>
          <lrm_resource id="rsc6a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a2_last_0" operation_key="rsc6a2_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="87:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;87:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="293" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="53" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc6a2_monitor_10000" operation_key="rsc6a2_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="88:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;88:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="296" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666716" exec-time="22" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc8b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc8b_last_0" operation_key="rsc8b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="116:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;116:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="258" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="67" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc4b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc4b_last_0" operation_key="rsc4b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="52:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;52:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="45" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="69" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="Fencing" type="fence_xvm" class="stonith">
            <lrm_rsc_op id="Fencing_last_0" operation_key="Fencing_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="44:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;44:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="12" queue-time="0" op-digest="422e90c96b7732222706b322138f43c8"/>
          </lrm_resource>
          <lrm_resource id="rsc6a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a1_last_failure_0" operation_key="rsc6a1_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="246:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;246:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-2" call-id="246" rc-code="1" op-status="0" interval="0" last-rc-change="1608666478" last-run="1608666478" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc6a1_last_0" operation_key="rsc6a1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="84:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;84:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="290" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="23" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc6a1_monitor_10000" operation_key="rsc6a1_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="85:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;85:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="292" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666716" exec-time="39" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc10a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc10a_last_0" operation_key="rsc10a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="124:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;124:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="321" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="63" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc10a_last_failure_0" operation_key="rsc10a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="175:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;175:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-2" call-id="175" rc-code="1" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc10a_monitor_10000" operation_key="rsc10a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="125:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;125:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="328" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666893" exec-time="123" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12a_last_0" operation_key="rsc12a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="129:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;129:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="310" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="50" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12b_last_0" operation_key="rsc12b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="132:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;132:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="314" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="68" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc12c" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc12c_last_0" operation_key="rsc12c_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="135:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;135:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="318" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="86" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc14b" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc14b_last_0" operation_key="rsc14b_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="198:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;198:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="382" rc-code="0" op-status="0" interval="0" last-rc-change="1608667874" last-run="1608667874" exec-time="59" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc14b_monitor_10000" operation_key="rsc14b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="198:71:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;198:71:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="375" rc-code="0" op-status="0" interval="10000" last-rc-change="1608667796" exec-time="35" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc14a" type="Stateful" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc14a_last_0" operation_key="rsc14a_demote_0" operation="demote" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="206:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;206:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="386" rc-code="0" op-status="0" interval="0" last-rc-change="1608667874" last-run="1608667874" exec-time="70" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc14a_monitor_10000" operation_key="rsc14a_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="205:74:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;205:74:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="389" rc-code="0" op-status="0" interval="10000" last-rc-change="1608667874" exec-time="29" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
          </lrm_resource>
          <lrm_resource id="rsc6a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc6a_last_0" operation_key="rsc6a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="94:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;94:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="286" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="29" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="rsc6a_monitor_10000" operation_key="rsc6a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="95:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;95:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="288" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666716" exec-time="31" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-docker-1" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-docker-1_last_0" operation_key="bundle11-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="81:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;81:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="175" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="107" queue-time="0" op-digest="8d3651c56ba0fdc98d0b45ffb590226e"/>
          </lrm_resource>
          <lrm_resource id="rsc5a1" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a1_last_0" operation_key="rsc5a1_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="73:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;73:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="283" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="39" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="rsc5a2" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="rsc5a2_last_0" operation_key="rsc5a2_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="76:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;76:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="278" rc-code="0" op-status="0" interval="0" last-rc-change="1608666715" last-run="1608666715" exec-time="71" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
          <lrm_resource id="bundle11-docker-0" type="docker" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-docker-0_last_0" operation_key="bundle11-docker-0_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="168:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;168:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="330" rc-code="0" op-status="0" interval="0" last-rc-change="1608666893" last-run="1608666893" exec-time="80542" queue-time="0" op-digest="f1b936bf51a44fa14e140fa5c05411d3"/>
          </lrm_resource>
          <lrm_resource id="bundle11-ip-192.168.122.134" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-ip-192.168.122.134_last_0" operation_key="bundle11-ip-192.168.122.134_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="165:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;165:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="335" rc-code="0" op-status="0" interval="0" last-rc-change="1608666973" last-run="1608666973" exec-time="77" queue-time="0" op-digest="4b105bfe443dd9dd577360067aa8ab0f"/>
          </lrm_resource>
          <lrm_resource id="bundle11-ip-192.168.122.135" type="IPaddr2" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="bundle11-ip-192.168.122.135_last_0" operation_key="bundle11-ip-192.168.122.135_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="80:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;80:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="171" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="97" queue-time="0" op-digest="d41ab06b142cfb1ec4fb12415f81ff48"/>
          </lrm_resource>
        </lrm_resources>
      </lrm>
    </node_state>
    <node_state remote_node="true" id="bundle10-0" uname="bundle10-0" in_ccm="true" crm-debug-origin="do_state_transition" node_fenced="0">
      <lrm id="bundle10-0">
        <lrm_resources>
          <lrm_resource id="httpd" type="apache" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="httpd_last_0" operation_key="httpd_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="151:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;151:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="8" rc-code="0" op-status="0" interval="0" last-rc-change="1608666979" last-run="1608666979" exec-time="370" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="httpd_monitor_15000" operation_key="httpd_monitor_15000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="152:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;152:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="9" rc-code="0" op-status="0" interval="15000" last-rc-change="1608666979" exec-time="102" queue-time="0" op-digest="3ef575c5f050ae086f0f31bc8f085fdc"/>
          </lrm_resource>
        </lrm_resources>
      </lrm>
      <transient_attributes id="bundle10-0">
        <instance_attributes id="status-bundle10-0"/>
      </transient_attributes>
    </node_state>
    <node_state remote_node="true" id="bundle11-0" uname="bundle11-0" in_ccm="true" crm-debug-origin="do_state_transition" node_fenced="0">
      <lrm id="bundle11-0">
        <lrm_resources>
          <lrm_resource id="bundle11a" type="Dummy" class="ocf" provider="pacemaker">
            <lrm_rsc_op id="bundle11a_last_0" operation_key="bundle11a_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="167:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;167:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="8" rc-code="0" op-status="0" interval="0" last-rc-change="1608666977" last-run="1608666977" exec-time="45" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="bundle11a_monitor_15000" operation_key="bundle11a_monitor_15000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="168:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;168:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="9" rc-code="0" op-status="0" interval="15000" last-rc-change="1608666977" exec-time="12" queue-time="0" op-digest="3ef575c5f050ae086f0f31bc8f085fdc" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
          </lrm_resource>
        </lrm_resources>
      </lrm>
      <transient_attributes id="bundle11-0">
        <instance_attributes id="status-bundle11-0"/>
      </transient_attributes>
    </node_state>
    <node_state remote_node="true" id="bundle10-1" uname="bundle10-1" in_ccm="true" crm-debug-origin="do_state_transition" node_fenced="0">
      <lrm id="bundle10-1">
        <lrm_resources>
          <lrm_resource id="httpd" type="apache" class="ocf" provider="heartbeat">
            <lrm_rsc_op id="httpd_last_0" operation_key="httpd_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="155:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;155:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="8" rc-code="0" op-status="0" interval="0" last-rc-change="1608662188" last-run="1608662188" exec-time="311" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
            <lrm_rsc_op id="httpd_monitor_15000" operation_key="httpd_monitor_15000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="156:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;156:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="9" rc-code="0" op-status="0" interval="15000" last-rc-change="1608662189" exec-time="78" queue-time="0" op-digest="3ef575c5f050ae086f0f31bc8f085fdc"/>
          </lrm_resource>
        </lrm_resources>
      </lrm>
      <transient_attributes id="bundle10-1">
        <instance_attributes id="status-bundle10-1"/>
      </transient_attributes>
    </node_state>
  </status>
</cib>