File: Makefile.am

package info (click to toggle)
pcs 0.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,148 kB
  • sloc: python: 238,810; xml: 20,833; ruby: 13,203; makefile: 1,595; sh: 484
file content (569 lines) | stat: -rw-r--r-- 25,619 bytes parent folder | download
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
MAINTAINERCLEANFILES	= Makefile.in

EXTRA_DIST		= \
			  curl_test.py \
			  __init__.py \
			  resources/capabilities.xml \
			  resources/cib-all.xml \
			  resources/cib-empty-1.2.xml \
			  resources/cib-empty-3.1.xml \
			  resources/cib-empty-3.2.xml \
			  resources/cib-empty-3.3.xml \
			  resources/cib-empty-3.4.xml \
			  resources/cib-empty-3.5.xml \
			  resources/cib-empty-3.7.xml \
			  resources/cib-empty-3.9.xml \
			  resources/cib-empty-with3nodes.xml \
			  resources/cib-empty-withnodes.xml \
			  resources/cib-empty.xml \
			  resources/cib-fencing-levels.xml \
			  resources/cib-largefile.xml \
			  resources/cib-large.xml \
			  resources/cib-property.xml \
			  resources/cib-remote.xml \
			  resources/cib-rule-several-times-in-constraint.xml \
			  resources/cib-rule-with-spaces-in-date.xml \
			  resources/cib-status.xml \
			  resources/cib-tags.xml \
			  resources/cib-unexportable-constraints.xml \
			  resources/cib-unsupported-stonith-config.xml \
			  resources/cluster-options_metadata.xml \
			  resources/primitive-meta_metadata.xml \
			  resources/corosync-3nodes.conf \
			  resources/corosync-3nodes-qdevice.conf \
			  resources/corosync-3nodes-qdevice-heuristics.conf \
			  resources/corosync.conf \
			  resources/corosync-no-node-names.conf \
			  resources/corosync-qdevice.conf \
			  resources/corosync-some-node-names.conf \
			  resources/crm_mon.minimal.xml \
			  resources/crm_mon.all_resources.xml \
			  resources/fenced_metadata.xml \
			  resources/known-hosts \
			  resources/pcmk_rng/api/api-result.rng \
			  resources/pcmk_rng/api/crm_attribute-2.36.rng \
			  resources/pcmk_rng/api/crm_mon-2.41.rng \
			  resources/pcmk_rng/api/digests-2.9.rng \
			  resources/pcmk_rng/api/failure-2.8.rng \
			  resources/pcmk_rng/api/fence-event-2.15.rng \
			  resources/pcmk_rng/api/node-attrs-2.8.rng \
			  resources/pcmk_rng/api/node-history-2.41.rng \
			  resources/pcmk_rng/api/nodes-2.41.rng \
			  resources/pcmk_rng/api/ocf-ra-1.1.rng \
			  resources/pcmk_rng/api/options-2.36.rng \
			  resources/pcmk_rng/api/pacemakerd-health-2.25.rng \
			  resources/pcmk_rng/api/resources-2.41.rng \
			  resources/pcmk_rng/api/status-2.0.rng \
			  resources/pcmk_rng/api/ticket-2.35.rng \
			  resources/pcmk_rng/constraints-3.9.rng \
			  resources/pcmk_rng/rule-3.9.rng \
			  resources/pcmk_rng/score.rng \
			  resources/resource_agent_nagios_check_fping.xml \
			  resources/resource_agent_ocf_heartbeat_dummy_insane_action.xml \
			  resources/resource_agent_ocf_heartbeat_dummy_utf8.xml \
			  resources/resource_agent_ocf_heartbeat_dummy.xml \
			  resources/resource_agent_ocf_heartbeat_ipaddr2.xml \
			  resources/resource_agent_ocf_pacemaker_booth-site.xml \
			  resources/resource_agent_ocf_pacemaker_dummy.xml \
			  resources/resource_agent_ocf_pacemaker_remote.xml \
			  resources/resource_agent_ocf_pacemaker_stateful_ocf_1.0.xml \
			  resources/resource_agent_ocf_pacemaker_stateful_ocf_1.1.xml \
			  resources/resource_agent_systemd_chronyd.xml \
			  resources/stonith_agent_fence_custom_actions.xml \
			  resources/stonith_agent_fence_simple.xml \
			  resources/stonith_agent_fence_unfencing.xml \
			  resources/transitions01.xml \
			  resources/transitions02.xml \
			  suite.py \
			  api_v2_client.py \
			  tier0/cli/alert/__init__.py \
			  tier0/cli/alert/test_output.py \
			  tier0/cli/booth/__init__.py \
			  tier0/cli/booth/test_env.py \
			  tier0/cli/cib/element/__init__.py \
			  tier0/cli/cib/element/test_command.py \
			  tier0/cli/cib/__init__.py \
			  tier0/cli/cluster/__init__.py \
			  tier0/cli/cluster_property/__init__.py \
			  tier0/cli/cluster_property/test_command.py \
			  tier0/cli/cluster_property/test_output.py \
			  tier0/cli/cluster/test_command.py \
			  tier0/cli/cluster/test_report_processor.py \
			  tier0/cli/common/__init__.py \
			  tier0/cli/common/test_completion.py \
			  tier0/cli/common/test_lib_wrapper.py \
			  tier0/cli/common/test_middleware.py \
			  tier0/cli/common/test_parse_args.py \
			  tier0/cli/common/test_printable_tree.py \
			  tier0/cli/common/test_tools.py \
			  tier0/cli/constraint/__init__.py \
			  tier0/cli/constraint/location/__init__.py \
			  tier0/cli/constraint/location/test_command.py \
			  tier0/cli/constraint/output/test_all.py \
			  tier0/cli/constraint/test_command.py \
			  tier0/cli/constraint/test_parse_args.py \
			  tier0/cli/constraint_colocation/__init__.py \
			  tier0/cli/constraint_colocation/test_command.py \
			  tier0/cli/constraint_ticket/__init__.py \
			  tier0/cli/constraint_ticket/test_command.py \
			  tier0/cli/constraint_ticket/test_parse_args.py \
			  tier0/cli/__init__.py \
			  tier0/cli/node/__init__.py \
			  tier0/cli/node/test_command.py \
			  tier0/cli/node/test_output.py \
			  tier0/cli/query/__init__.py \
			  tier0/cli/query/test_resource.py \
			  tier0/cli/reports/__init__.py \
			  tier0/cli/reports/test_messages.py \
			  tier0/cli/reports/test_output.py \
			  tier0/cli/resource/__init__.py \
			  tier0/cli/resource/test_common.py \
			  tier0/cli/resource/test_defaults.py \
			  tier0/cli/resource/test_parse_args.py \
			  tier0/cli/resource/test_relations.py \
			  tier0/cli/resource/test_remove.py \
			  tier0/cli/resource/test_update.py \
			  tier0/cli/tag/__init__.py \
			  tier0/cli/tag/test_command.py \
			  tier0/cli/test_booth.py \
			  tier0/cli/test_client.py \
			  tier0/cli/test_cluster.py \
			  tier0/cli/test_dr.py \
			  tier0/cli/test_host.py \
			  tier0/cli/test_nvset.py \
			  tier0/cli/test_quorum.py \
			  tier0/cli/test_resource.py \
			  tier0/cli/test_rule.py \
			  tier0/cli/test_status.py \
			  tier0/cli/test_stonith.py \
			  tier0/cli/stonith/__init__.py \
			  tier0/cli/stonith/levels/__init__.py \
			  tier0/cli/stonith/levels/test_output.py \
			  tier0/cli/stonith/test_update.py \
			  tier0/common/__init__.py \
			  tier0/common/communication/__init__.py \
			  tier0/common/communication/test_logger.py \
			  tier0/common/interface/__init__.py \
			  tier0/common/interface/test_dto.py \
			  tier0/common/pacemaker/constraint/__init__.py \
			  tier0/common/pacemaker/constraint/all.py \
			  tier0/common/pacemaker/resource/__init__.py \
			  tier0/common/pacemaker/resource/list.py \
			  tier0/common/reports/__init__.py \
			  tier0/common/reports/test_item.py \
			  tier0/common/reports/test_messages.py \
			  tier0/common/reports/test_processor.py \
			  tier0/common/services/drivers/__init__.py \
			  tier0/common/services/drivers/test_systemd.py \
			  tier0/common/services/drivers/test_sysvinit_rhel.py \
			  tier0/common/services/__init__.py \
			  tier0/common/test_capabilities.py \
			  tier0/common/test_file.py \
			  tier0/common/test_host.py \
			  tier0/common/test_node_communicator.py \
			  tier0/common/test_resource_status.py \
			  tier0/common/test_str_tools.py \
			  tier0/common/test_tools.py \
			  tier0/common/test_tools_xml_fromstring.py \
			  tier0/common/test_validate.py \
			  tier0/daemon/app/fixtures_app.py \
			  tier0/daemon/app/fixtures_app_webui.py \
			  tier0/daemon/app/__init__.py \
			  tier0/daemon/app/test_api_v0.py \
			  tier0/daemon/app/test_api_v1.py \
			  tier0/daemon/app/test_app_auth.py \
			  tier0/daemon/app/test_app_gui.py \
			  tier0/daemon/app/test_app_redirect.py \
			  tier0/daemon/app/test_app_remote.py \
			  tier0/daemon/app/test_app_spa.py \
			  tier0/daemon/async_tasks/__init__.py \
			  tier0/daemon/async_tasks/dummy_commands.py \
			  tier0/daemon/async_tasks/helpers.py \
			  tier0/daemon/async_tasks/test_integration.py \
			  tier0/daemon/async_tasks/test_scheduler.py \
			  tier0/daemon/async_tasks/test_task.py \
			  tier0/daemon/async_tasks/test_worker.py \
			  tier0/daemon/async_tasks/test_command_mapping.py \
			  tier0/daemon/__init__.py \
			  tier0/daemon/test_env.py \
			  tier0/daemon/test_http_server.py \
			  tier0/daemon/test_pcs_cfgsync.py \
			  tier0/daemon/test_ruby_pcsd.py \
			  tier0/daemon/test_session.py \
			  tier0/daemon/test_ssl.py \
			  tier0/__init__.py \
			  tier0/lib/auth/__init__.py \
			  tier0/lib/auth/config/__init__.py \
			  tier0/lib/auth/config/test_facade.py \
			  tier0/lib/auth/config/test_parser.py \
			  tier0/lib/auth/test_provider.py \
			  tier0/lib/auth/test_validations.py \
			  tier0/lib/booth/__init__.py \
			  tier0/lib/booth/test_cib.py \
			  tier0/lib/booth/test_config_facade.py \
			  tier0/lib/booth/test_config_files.py \
			  tier0/lib/booth/test_config_parser.py \
			  tier0/lib/booth/test_config_validators.py \
			  tier0/lib/booth/test_env.py \
			  tier0/lib/booth/test_resource.py \
			  tier0/lib/booth/test_status.py \
			  tier0/lib/booth/test_sync.py \
			  tier0/lib/cib/__init__.py \
			  tier0/lib/cib/constraint/__init__.py \
			  tier0/lib/cib/constraint/test_common.py \
			  tier0/lib/cib/constraint/test_ticket.py \
			  tier0/lib/cib/resource/__init__.py \
			  tier0/lib/cib/resource/test_agent.py \
			  tier0/lib/cib/resource/test_hierarchy.py \
			  tier0/lib/cib/resource/test_meta.py \
			  tier0/lib/cib/resource/test_primitive_validate.py \
			  tier0/lib/cib/resource/test_relations.py \
			  tier0/lib/cib/resource/test_stonith.py \
			  tier0/lib/cib/resource/test_validations.py \
			  tier0/lib/cib/rule/__init__.py \
			  tier0/lib/cib/rule/test_cib_to_dto.py \
			  tier0/lib/cib/rule/test_cib_to_str.py \
			  tier0/lib/cib/rule/test_parsed_to_cib.py \
			  tier0/lib/cib/rule/test_parser.py \
			  tier0/lib/cib/rule/test_tools.py \
			  tier0/lib/cib/rule/test_validator.py \
			  tier0/lib/cib/test_acl.py \
			  tier0/lib/cib/test_alert.py \
			  tier0/lib/cib/test_constraint_colocation.py \
			  tier0/lib/cib/test_constraint_location.py \
			  tier0/lib/cib/test_constraint_order.py \
			  tier0/lib/cib/test_constraint.py \
			  tier0/lib/cib/test_element_description.py \
			  tier0/lib/cib/test_fencing_topology.py \
			  tier0/lib/cib/test_node.py \
			  tier0/lib/cib/test_nvpair_multi.py \
			  tier0/lib/cib/test_nvpair.py \
			  tier0/lib/cib/test_remove_elements.py \
			  tier0/lib/cib/test_resource_bundle.py \
			  tier0/lib/cib/test_resource_clone.py \
			  tier0/lib/cib/test_resource_common.py \
			  tier0/lib/cib/test_resource_group.py \
			  tier0/lib/cib/test_resource_guest_node.py \
			  tier0/lib/cib/test_resource_operations.py \
			  tier0/lib/cib/test_resource_primitive.py \
			  tier0/lib/cib/test_resource_remote_node.py \
			  tier0/lib/cib/test_resource_set.py \
			  tier0/lib/cib/test_sections.py \
			  tier0/lib/cib/test_status.py \
			  tier0/lib/cib/test_tag.py \
			  tier0/lib/cib/test_tools.py \
			  tier0/lib/commands/cluster/common.py \
			  tier0/lib/commands/cluster/__init__.py \
			  tier0/lib/commands/cluster/test_add_link.py \
			  tier0/lib/commands/cluster/test_add_nodes.py \
			  tier0/lib/commands/cluster/test_add_nodes_validation.py \
			  tier0/lib/commands/cluster/test_authkey_corosync.py \
			  tier0/lib/commands/cluster/test_config_update.py \
			  tier0/lib/commands/cluster/test_get_corosync_conf_struct.py \
			  tier0/lib/commands/cluster/test_node_clear.py \
			  tier0/lib/commands/cluster/test_remove_links.py \
			  tier0/lib/commands/cluster/test_remove_nodes_from_cib.py \
			  tier0/lib/commands/cluster/test_remove_nodes.py \
			  tier0/lib/commands/cluster_property/crm_attribute_mixins.py \
			  tier0/lib/commands/cluster_property/fixtures.py \
			  tier0/lib/commands/cluster_property/__init__.py \
			  tier0/lib/commands/cluster_property/test_get_properties_meta_crm_attribute.py \
			  tier0/lib/commands/cluster_property/test_get_properties.py \
			  tier0/lib/commands/cluster_property/test_remove_cluster_name.py \
			  tier0/lib/commands/cluster_property/test_set_properties.py \
			  tier0/lib/commands/cluster_property/test_set_properties_stonith_watchdog_timeout.py \
			  tier0/lib/commands/cluster/test_rename.py \
			  tier0/lib/commands/cluster/test_setup.py \
			  tier0/lib/commands/cluster/test_update_link.py \
			  tier0/lib/commands/cluster/test_verify.py \
			  tier0/lib/commands/constraint/__init__.py \
			  tier0/lib/commands/constraint/test_location.py \
			  tier0/lib/commands/constraint/test_ticket.py \
			  tier0/lib/commands/dr/__init__.py \
			  tier0/lib/commands/dr/test_destroy.py \
			  tier0/lib/commands/dr/test_get_config.py \
			  tier0/lib/commands/dr/test_set_recovery_site.py \
			  tier0/lib/commands/dr/test_status.py \
			  tier0/lib/commands/__init__.py \
			  tier0/lib/commands/remote_node/fixtures_add.py \
			  tier0/lib/commands/remote_node/fixtures_remove.py \
			  tier0/lib/commands/remote_node/__init__.py \
			  tier0/lib/commands/remote_node/test_get_resource_ids.py \
			  tier0/lib/commands/remote_node/test_node_add_guest.py \
			  tier0/lib/commands/remote_node/test_node_add_remote.py \
			  tier0/lib/commands/remote_node/test_node_remove_guest.py \
			  tier0/lib/commands/remote_node/test_node_remove_remote.py \
			  tier0/lib/commands/resource/bundle_common.py \
			  tier0/lib/commands/resource/__init__.py \
			  tier0/lib/commands/resource/test_bundle_create.py \
			  tier0/lib/commands/resource/test_bundle_reset.py \
			  tier0/lib/commands/resource/test_bundle_update.py \
			  tier0/lib/commands/resource/test_failcounts.py \
			  tier0/lib/commands/resource/test_get_configured_resources.py \
			  tier0/lib/commands/resource/test_group_add.py \
			  tier0/lib/commands/resource/test_resource_create.py \
			  tier0/lib/commands/resource/test_resource_enable_disable.py \
			  tier0/lib/commands/resource/test_resource_manage_unmanage.py \
			  tier0/lib/commands/resource/test_resource_move_autoclean.py \
			  tier0/lib/commands/resource/test_resource_move_ban.py \
			  tier0/lib/commands/resource/test_resource_relations.py \
			  tier0/lib/commands/resource/test_resource_update.py \
			  tier0/lib/commands/resource/test_restart.py \
			  tier0/lib/commands/resource/test_stop.py \
			  tier0/lib/commands/sbd/__init__.py \
			  tier0/lib/commands/sbd/test_disable_sbd.py \
			  tier0/lib/commands/sbd/test_enable_sbd.py \
			  tier0/lib/commands/sbd/test_get_cluster_sbd_config.py \
			  tier0/lib/commands/sbd/test_get_cluster_sbd_status.py \
			  tier0/lib/commands/sbd/test_watchdog_list.py \
			  tier0/lib/commands/tag/__init__.py \
			  tier0/lib/commands/tag/tag_common.py \
			  tier0/lib/commands/tag/test_tag_config.py \
			  tier0/lib/commands/tag/test_tag_create.py \
			  tier0/lib/commands/tag/test_tag_remove.py \
			  tier0/lib/commands/tag/test_tag_update.py \
			  tier0/lib/commands/test_acl.py \
			  tier0/lib/commands/test_alert.py \
			  tier0/lib/commands/test_auth.py \
			  tier0/lib/commands/test_booth.py \
			  tier0/lib/commands/test_cib_options.py \
			  tier0/lib/commands/test_cib.py \
			  tier0/lib/commands/test_constraint_common.py \
			  tier0/lib/commands/test_constraint_order.py \
			  tier0/lib/commands/test_fencing_topology.py \
			  tier0/lib/commands/test_node.py \
			  tier0/lib/commands/test_pcs_cfgsync.py \
			  tier0/lib/commands/test_pcsd.py \
			  tier0/lib/commands/test_qdevice.py \
			  tier0/lib/commands/test_quorum.py \
			  tier0/lib/commands/test_resource_agent.py \
			  tier0/lib/commands/test_sbd.py \
			  tier0/lib/commands/test_scsi.py \
			  tier0/lib/commands/test_status.py \
			  tier0/lib/commands/test_stonith.py \
			  tier0/lib/commands/test_stonith_agent.py \
			  tier0/lib/commands/test_stonith_history.py \
			  tier0/lib/commands/test_stonith_update_scsi_devices.py \
			  tier0/lib/communication/__init__.py \
			  tier0/lib/communication/test_booth.py \
			  tier0/lib/communication/test_cluster.py \
			  tier0/lib/communication/test_corosync.py \
			  tier0/lib/communication/test_nodes.py \
			  tier0/lib/communication/test_pcs_cfgsync.py \
			  tier0/lib/communication/test_qdevice_net.py \
			  tier0/lib/communication/test_qdevice.py \
			  tier0/lib/communication/test_sbd.py \
			  tier0/lib/communication/test_scsi.py \
			  tier0/lib/communication/test_status.py \
			  tier0/lib/corosync/__init__.py \
			  tier0/lib/corosync/test_config_facade_links.py \
			  tier0/lib/corosync/test_config_facade_misc.py \
			  tier0/lib/corosync/test_config_facade_nodes.py \
			  tier0/lib/corosync/test_config_facade_quorum_device.py \
			  tier0/lib/corosync/test_config_facade_quorum.py \
			  tier0/lib/corosync/test_config_facade_transport.py \
			  tier0/lib/corosync/test_config_parser.py \
			  tier0/lib/corosync/test_config_validators_common.py \
			  tier0/lib/corosync/test_config_validators_create.py \
			  tier0/lib/corosync/test_config_validators_links.py \
			  tier0/lib/corosync/test_config_validators_nodes.py \
			  tier0/lib/corosync/test_config_validators_quorum.py \
			  tier0/lib/corosync/test_config_validators_rename_cluster.py \
			  tier0/lib/corosync/test_config_validators_update.py \
			  tier0/lib/corosync/test_live.py \
			  tier0/lib/corosync/test_node.py \
			  tier0/lib/corosync/test_qdevice_client.py \
			  tier0/lib/corosync/test_qdevice_net.py \
			  tier0/lib/dr/__init__.py \
			  tier0/lib/dr/test_facade.py \
			  tier0/lib/file/test_instance.py \
			  tier0/lib/file/test_raw_file.py \
			  tier0/lib/file/test_toolbox.py \
			  tier0/lib/host/config/__init__.py \
			  tier0/lib/host/config/test_facade.py \
			  tier0/lib/host/config/test_parser.py \
			  tier0/lib/host/__init__.py \
			  tier0/lib/__init__.py \
			  tier0/lib/misc.py \
			  tier0/lib/pacemaker/__init__.py \
			  tier0/lib/pacemaker/test_api_result.py \
			  tier0/lib/pacemaker/test_live.py \
			  tier0/lib/pacemaker/test_simulate.py \
			  tier0/lib/pacemaker/test_state.py \
			  tier0/lib/pacemaker/test_status.py \
			  tier0/lib/pacemaker/test_values.py \
			  tier0/lib/pcs_cfgsync/config/__init__.py \
			  tier0/lib/pcs_cfgsync/config/test_facade.py \
			  tier0/lib/pcs_cfgsync/__init__.py \
			  tier0/lib/pcs_cfgsync/test_fetcher.py \
			  tier0/lib/pcs_cfgsync/test_save_sync.py \
			  tier0/lib/permissions/__init__.py \
			  tier0/lib/permissions/config/__init__.py \
			  tier0/lib/permissions/config/test_facade.py \
			  tier0/lib/permissions/config/test_parser.py \
			  tier0/lib/permissions/test_checker.py \
			  tier0/lib/resource_agent/__init__.py \
			  tier0/lib/resource_agent/test_facade.py \
			  tier0/lib/resource_agent/test_list.py \
			  tier0/lib/resource_agent/test_name.py \
			  tier0/lib/resource_agent/test_ocf_transform.py \
			  tier0/lib/resource_agent/test_pcs_transform.py \
			  tier0/lib/resource_agent/test_types.py \
			  tier0/lib/resource_agent/test_xml.py \
			  tier0/lib/test_cluster_property.py \
			  tier0/lib/test_env_cib.py \
			  tier0/lib/test_env_corosync.py \
			  tier0/lib/test_env.py \
			  tier0/lib/test_external.py \
			  tier0/lib/test_node_communication_format.py \
			  tier0/lib/test_node_communication.py \
			  tier0/lib/test_sbd.py \
			  tier0/lib/test_tools.py \
			  tier0/lib/test_validate.py \
			  tier0/lib/test_xml_tools.py \
			  tier0/test_capabilities.py \
			  tier1/cib_resource/common.py \
			  tier1/cib_resource/__init__.py \
			  tier1/cib_resource/test_bundle.py \
			  tier1/cib_resource/test_clone_unclone.py \
			  tier1/cib_resource/test_create.py \
			  tier1/cib_resource/test_enable_disable.py \
			  tier1/cib_resource/test_group_ungroup.py \
			  tier1/cib_resource/test_manage_unmanage.py \
			  tier1/cib_resource/test_move.py \
			  tier1/cib_resource/test_operation_add.py \
			  tier1/cib_resource/test_resource_stonith_is_forbidden.py \
			  tier1/cib_resource/test_stonith_create.py \
			  tier1/cib_resource/test_stonith_enable_disable.py \
			  tier1/cib_resource/test_stonith_resource_is_forbidden.py \
			  tier1/cib_resource/test_update.py \
			  tier1/cluster/common.py \
			  tier1/cluster/__init__.py \
			  tier1/cluster/test_cib_push.py \
			  tier1/cluster/test_config_show.py \
			  tier1/cluster/test_config_update.py \
			  tier1/cluster/test_setup_local.py \
			  tier1/cluster/test_cluster_rename.py \
			  tier1/constraint/__init__.py \
			  tier1/constraint/test_config.py \
			  tier1/constraint/test_location.py \
			  tier1/__init__.py \
			  tier1/legacy/__init__.py \
			  tier1/legacy/common.py \
			  tier1/legacy/test_acl.py \
			  tier1/legacy/test_alert.py \
			  tier1/legacy/test_cluster.py \
			  tier1/legacy/test_constraints.py \
			  tier1/legacy/test_node.py \
			  tier1/legacy/test_resource.py \
			  tier1/legacy/test_stonith.py \
			  tier1/legacy/test_utils.py \
			  tier1/resource/__init__.py \
			  tier1/resource/test_config.py \
			  tier1/resource/test_remove.py \
			  tier1/stonith/__init__.py \
			  tier1/stonith/levels/__init__.py \
			  tier1/stonith/levels/test_config.py \
			  tier1/stonith/test_config.py \
			  tier1/stonith/test_remove.py \
			  tier1/test_alert.py \
			  tier1/test_booth.py \
			  tier1/test_cib_options.py \
			  tier1/test_cib.py \
			  tier1/test_cluster_pcmk_remote.py \
			  tier1/test_cluster_property.py \
			  tier1/test_misc.py \
			  tier1/test_node.py \
			  tier1/test_quorum.py \
			  tier1/test_status.py \
			  tier1/test_status_query_resource.py \
			  tier1/test_tag.py \
			  tools/assertions.py \
			  tools/bin_mock/__init__.py \
			  tools/bin_mock/pcmk/crm_resource.d/list_agents_ocf__heartbeat \
			  tools/bin_mock/pcmk/crm_resource.d/list_agents_ocf__pacemaker \
			  tools/bin_mock/pcmk/crm_resource.d/list_agents_ocf__pcsmock \
			  tools/bin_mock/pcmk/crm_resource.d/list_ocf_providers \
			  tools/bin_mock/pcmk/crm_resource.d/list_standards \
			  tools/bin_mock/pcmk/crm_resource.d/lsb__pcsmock_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/ocf__heartbeat__pcsMock_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/ocf__pacemaker__pcsMock_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/ocf__pacemaker__remote_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/ocf__pcsmock__action_method_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/ocf__pcsmock__CamelCase_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/ocf__pcsmock__duplicate_monitor_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/ocf__pcsmock__minimal_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/ocf__pcsmock__params_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/ocf__pcsmock__stateful_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/ocf__pcsmock__unique_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/primitive-meta_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/stonith__fence_pcsmock_action_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/stonith__fence_pcsmock_method_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/stonith__fence_pcsmock_minimal_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/stonith__fence_pcsmock_params_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/stonith__fence_pcsmock_unfencing_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/stonith__fence_sbd_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/systemd__pcsmock@a__b_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource.d/systemd__pcsmock_metadata.xml \
			  tools/bin_mock/pcmk/crm_resource_mock.py \
			  tools/bin_mock/pcmk/pacemaker_metadata.d/cluster_options.xml \
			  tools/bin_mock/pcmk/pacemaker_metadata.d/pacemaker_fenced.xml \
			  tools/bin_mock/pcmk/pacemaker_metadata.py \
			  tools/bin_mock/pcmk/stonith_admin_mock.py \
			  tools/case_analysis.py \
			  tools/check/__init__.py \
			  tools/check/test_misc.py \
			  tools/cib.py \
			  tools/color_text_runner/format.py \
			  tools/color_text_runner/__init__.py \
			  tools/color_text_runner/result.py \
			  tools/color_text_runner/writer.py \
			  tools/command_env/assistant.py \
			  tools/command_env/calls.py \
			  tools/command_env/config_corosync_conf.py \
			  tools/command_env/config_env.py \
			  tools/command_env/config_fs.py \
			  tools/command_env/config_http_booth.py \
			  tools/command_env/config_http_corosync.py \
			  tools/command_env/config_http_files.py \
			  tools/command_env/config_http_host.py \
			  tools/command_env/config_http_pcmk.py \
			  tools/command_env/config_http_pcs_cfgsync.py \
			  tools/command_env/config_http.py \
			  tools/command_env/config_http_sbd.py \
			  tools/command_env/config_http_scsi.py \
			  tools/command_env/config_http_status.py \
			  tools/command_env/config.py \
			  tools/command_env/config_raw_file.py \
			  tools/command_env/config_runner_booth.py \
			  tools/command_env/config_runner_cib.py \
			  tools/command_env/config_runner_corosync.py \
			  tools/command_env/config_runner_pcmk.py \
			  tools/command_env/config_runner.py \
			  tools/command_env/config_runner_sbd.py \
			  tools/command_env/config_runner_scsi.py \
			  tools/command_env/config_services.py \
			  tools/command_env/__init__.py \
			  tools/command_env/mock_fs.py \
			  tools/command_env/mock_get_local_corosync_conf.py \
			  tools/command_env/mock_node_communicator.py \
			  tools/command_env/mock_push_cib.py \
			  tools/command_env/mock_push_corosync_conf.py \
			  tools/command_env/mock_raw_file.py \
			  tools/command_env/mock_runner.py \
			  tools/command_env/mock_service_manager.py \
			  tools/command_env/spy.py \
			  tools/command_env/tools.py \
			  tools/custom_mock.py \
			  tools/fixture_cib.py \
			  tools/fixture_crm_mon.py \
			  tools/fixture.py \
			  tools/__init__.py \
			  tools/metadata_dto.py \
			  tools/misc.py \
			  tools/nodes_dto.py \
			  tools/pcs_runner.py \
			  tools/parallel_test_runner.py \
			  tools/resources_dto.py \
			  tools/constraints_dto.py \
			  tools/xml.py