[Debian-ha-commits] [pcs] branch upstream updated (f2f3427 -> e4a3a87)

Valentin Vidic vvidic-guest at moszumanska.debian.org
Thu Jun 29 01:29:52 UTC 2017


This is an automated email from the git hooks/post-receive script.

vvidic-guest pushed a change to branch upstream
in repository pcs.

      from  f2f3427   New upstream version 0.9.155+dfsg
       new  e4a3a87   New upstream version 0.9.158

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.md                                       |  214 +-
 MANIFEST.in                                        |    2 +-
 Makefile                                           |   45 +-
 newversion.py                                      |   13 +-
 pcs/acl.py                                         |    2 +-
 pcs/alert.py                                       |    2 +-
 pcs/app.py                                         |  119 +-
 pcs/{bash_completion.sh => bash_completion}        |    0
 pcs/booth.py                                       |    8 +-
 pcs/cli/booth/command.py                           |   23 +-
 pcs/cli/booth/console_report.py                    |    7 +-
 pcs/cli/booth/env.py                               |   75 +-
 pcs/cli/booth/test/test_env.py                     |  123 +-
 pcs/{test/tools/test => cli/cluster}/__init__.py   |    0
 pcs/cli/cluster/command.py                         |  103 +
 pcs/{ => cli/cluster/test}/__init__.py             |    0
 pcs/cli/cluster/test/test_command.py               |   24 +
 pcs/cli/common/console_report.py                   |  592 +++-
 pcs/cli/common/{env.py => env_cli.py}              |    2 +
 pcs/cli/common/env_file.py                         |   75 +
 pcs/cli/common/errors.py                           |    6 +
 pcs/cli/common/lib_wrapper.py                      |   89 +
 pcs/cli/common/parse_args.py                       |  304 +-
 pcs/cli/common/reports.py                          |   62 +-
 pcs/cli/common/test/test_console_report.py         |  938 ++++-
 pcs/cli/common/test/test_env_file.py               |  138 +
 pcs/cli/common/test/test_parse_args.py             |  394 ++-
 pcs/cli/common/test/test_reports.py                |   43 +-
 pcs/cli/constraint_all/console_report.py           |   16 +-
 pcs/cli/constraint_all/test/test_console_report.py |   29 +-
 pcs/cli/constraint_order/console_report.py         |    2 +-
 pcs/cli/fencing_topology.py                        |   24 +
 pcs/{ => cli/resource}/__init__.py                 |    0
 pcs/cli/resource/parse_args.py                     |  191 ++
 pcs/{ => cli/resource/test}/__init__.py            |    0
 pcs/cli/resource/test/test_parse_args.py           |  672 ++++
 pcs/cluster.py                                     |  792 +++--
 pcs/common/env_file_role_codes.py                  |    1 +
 ...{env_file_role_codes.py => fencing_topology.py} |    5 +-
 pcs/common/pcs_pycurl.py                           |   34 +
 pcs/common/report_codes.py                         |   75 +-
 pcs/common/test/test_tools.py                      |   24 +
 pcs/common/tools.py                                |   29 +
 pcs/config.py                                      |  118 +-
 pcs/constraint.py                                  |  577 ++--
 pcs/lib/booth/config_files.py                      |    4 -
 pcs/lib/booth/config_structure.py                  |   11 +-
 pcs/lib/booth/env.py                               |    6 +-
 pcs/lib/booth/resource.py                          |   47 +-
 pcs/lib/booth/test/test_config_structure.py        |   10 +-
 pcs/lib/booth/test/test_env.py                     |   53 +-
 pcs/lib/booth/test/test_resource.py                |  104 +-
 pcs/lib/cib/acl.py                                 |  278 +-
 pcs/lib/cib/alert.py                               |   52 +-
 pcs/lib/cib/constraint/colocation.py               |    4 +-
 pcs/lib/cib/constraint/constraint.py               |   39 +-
 pcs/lib/cib/constraint/resource_set.py             |    8 +-
 pcs/lib/cib/constraint/ticket.py                   |    6 +-
 pcs/lib/cib/fencing_topology.py                    |  322 ++
 pcs/lib/cib/node.py                                |   91 +
 pcs/lib/cib/nvpair.py                              |  135 +-
 pcs/lib/cib/resource.py                            |   15 -
 pcs/lib/cib/resource/__init__.py                   |   17 +
 pcs/lib/cib/resource/bundle.py                     |  516 +++
 pcs/lib/cib/resource/clone.py                      |   71 +
 pcs/lib/cib/resource/common.py                     |  203 ++
 pcs/lib/cib/resource/group.py                      |   82 +
 pcs/lib/cib/resource/guest_node.py                 |  243 ++
 pcs/lib/cib/resource/operations.py                 |  364 ++
 pcs/lib/cib/resource/primitive.py                  |  134 +
 pcs/lib/cib/resource/remote_node.py                |  219 ++
 pcs/lib/cib/stonith.py                             |   15 +
 .../cib/test/test_acl.py}                          |  338 +-
 pcs/lib/cib/test/test_alert.py                     |  163 +-
 pcs/lib/cib/test/test_constraint.py                |  152 +-
 pcs/lib/cib/test/test_constraint_colocation.py     |    2 +-
 pcs/lib/cib/test/test_constraint_order.py          |    2 +-
 pcs/lib/cib/test/test_constraint_ticket.py         |   10 +-
 pcs/lib/cib/test/test_fencing_topology.py          |  984 ++++++
 pcs/lib/cib/test/test_node.py                      |  233 ++
 pcs/lib/cib/test/test_nvpair.py                    |  177 +-
 pcs/lib/cib/test/test_resource.py                  |   21 -
 pcs/lib/cib/test/test_resource_bundle.py           |   42 +
 pcs/lib/cib/test/test_resource_clone.py            |  109 +
 pcs/lib/cib/test/test_resource_common.py           |  570 ++++
 pcs/lib/cib/test/test_resource_group.py            |  163 +
 pcs/lib/cib/test/test_resource_guest_node.py       |  444 +++
 pcs/lib/cib/test/test_resource_operations.py       |  392 +++
 pcs/lib/cib/test/test_resource_primitive.py        |   96 +
 pcs/lib/cib/test/test_resource_remote_node.py      |  287 ++
 pcs/lib/cib/test/test_resource_set.py              |    2 +-
 .../cib/test/test_tools.py}                        |  531 +--
 pcs/lib/cib/tools.py                               |  295 +-
 pcs/lib/cluster_conf_facade.py                     |    4 +-
 pcs/lib/commands/acl.py                            |  215 +-
 pcs/lib/commands/alert.py                          |    5 +-
 pcs/lib/commands/booth.py                          |   62 +-
 pcs/lib/commands/cluster.py                        |  495 +++
 pcs/lib/commands/fencing_topology.py               |  122 +
 pcs/lib/commands/node.py                           |  166 +
 pcs/lib/commands/resource.py                       |  726 ++++
 pcs/lib/commands/resource_agent.py                 |   18 +-
 pcs/lib/commands/sbd.py                            |  273 +-
 pcs/lib/commands/stonith.py                        |  143 +
 pcs/lib/commands/stonith_agent.py                  |   19 +-
 pcs/{ => lib/commands/test/resource}/__init__.py   |    0
 pcs/lib/commands/test/resource/common.py           |   76 +
 pcs/lib/commands/test/resource/fixture.py          |  201 ++
 .../commands/test/resource/test_bundle_create.py   | 1152 +++++++
 .../commands/test/resource/test_bundle_update.py   |  826 +++++
 .../commands/test/resource/test_resource_create.py | 1295 +++++++
 .../test/resource/test_resource_enable_disable.py  | 1519 +++++++++
 .../test/resource/test_resource_manage_unmanage.py | 1092 ++++++
 pcs/lib/commands/test/test_acl.py                  |  372 +-
 pcs/lib/commands/test/test_alert.py                |   49 +-
 pcs/lib/commands/test/test_booth.py                |    5 +-
 pcs/lib/commands/test/test_fencing_topology.py     |  257 ++
 pcs/lib/commands/test/test_node.py                 |  296 ++
 pcs/lib/commands/test/test_resource_agent.py       |   31 +-
 pcs/lib/commands/test/test_stonith_agent.py        |   24 +-
 pcs/lib/commands/test/test_ticket.py               |    9 +-
 pcs/lib/corosync/config_facade.py                  |   19 +-
 pcs/lib/env.py                                     |   94 +-
 pcs/lib/env_file.py                                |   37 +-
 pcs/lib/env_tools.py                               |   35 +
 pcs/lib/errors.py                                  |   23 +
 pcs/lib/exchange_formats.md                        |   12 +
 pcs/lib/external.py                                |  244 +-
 pcs/lib/node.py                                    |   31 +
 pcs/lib/node_communication_format.py               |  161 +
 pcs/lib/nodes_task.py                              |  329 +-
 pcs/{ => lib/pacemaker}/__init__.py                |    0
 pcs/lib/pacemaker/env.py                           |   28 +
 pcs/lib/{pacemaker.py => pacemaker/live.py}        |  262 +-
 pcs/lib/{pacemaker_state.py => pacemaker/state.py} |  120 +-
 pcs/{ => lib/pacemaker/test}/__init__.py           |    0
 .../pacemaker/test/test_live.py}                   |  447 +--
 pcs/lib/pacemaker/test/test_state.py               |  858 +++++
 .../test/test_values.py}                           |   66 +-
 .../{pacemaker_values.py => pacemaker/values.py}   |   87 +-
 pcs/lib/reports.py                                 | 1015 +++++-
 pcs/lib/resource_agent.py                          |  407 ++-
 pcs/lib/sbd.py                                     |  198 +-
 pcs/{test/test_lib_env.py => lib/test/test_env.py} |  312 +-
 pcs/lib/test/test_env_file.py                      |  132 +-
 pcs/lib/test/test_errors.py                        |   64 +-
 pcs/lib/test/test_node_communication_format.py     |  119 +
 .../test/test_nodes_task.py}                       |  280 +-
 pcs/lib/test/test_resource_agent.py                |  711 +++-
 pcs/lib/test/test_validate.py                      | 1045 ++++++
 pcs/lib/tools.py                                   |    5 +
 pcs/lib/validate.py                                |  532 +++
 pcs/lib/xml_tools.py                               |   86 +
 pcs/node.py                                        |  205 +-
 pcs/pcs.8                                          |  318 +-
 pcs/pcsd.py                                        |  102 +-
 pcs/qdevice.py                                     |    2 +-
 pcs/quorum.py                                      |    4 +-
 pcs/resource.py                                    |  856 ++---
 pcs/settings_default.py                            |   10 +-
 pcs/status.py                                      |    2 +-
 pcs/stonith.py                                     |  616 ++--
 pcs/{ => test/cib_resource}/__init__.py            |    0
 pcs/test/cib_resource/common.py                    |   29 +
 pcs/test/cib_resource/stonith_common.py            |   30 +
 pcs/test/cib_resource/test_bundle.py               |  491 +++
 pcs/test/cib_resource/test_create.py               | 1470 ++++++++
 pcs/test/cib_resource/test_manage_unmanage.py      |  277 ++
 pcs/test/cib_resource/test_operation_add.py        |  135 +
 pcs/test/cib_resource/test_stonith_create.py       |  289 ++
 .../cib_resource/test_stonith_enable_disable.py    |  107 +
 ...y-withnodes.xml => cib-empty-2.3-withnodes.xml} |    2 +-
 ...y-withnodes.xml => cib-empty-2.5-withnodes.xml} |    2 +-
 pcs/test/resources/cib-empty-2.5.xml               |    2 +-
 .../{cib-empty-1.2.xml => cib-empty-2.6.xml}       |    2 +-
 .../{cib-empty-1.2.xml => cib-empty-2.8.xml}       |    2 +-
 ...mpty-withnodes.xml => cib-empty-with3nodes.xml} |    1 +
 .../resource_agent_ocf_heartbeat_dummy.xml         |   49 +
 pcs/test/suite.py                                  |   46 +-
 pcs/test/test_acl.py                               |    6 +-
 pcs/test/test_alert.py                             |   35 +-
 pcs/test/test_booth.py                             |   24 +-
 pcs/test/test_cluster.py                           |  187 +-
 pcs/test/test_cluster_pcmk_remote.py               |  504 +++
 pcs/test/test_constraints.py                       |  939 ++++-
 pcs/test/test_lib_commands_quorum.py               |   58 +-
 pcs/test/test_lib_commands_sbd.py                  |  656 +++-
 pcs/test/test_lib_corosync_config_facade.py        |   69 +-
 pcs/test/test_lib_external.py                      |  771 +++--
 pcs/test/test_lib_node.py                          |  141 +-
 pcs/test/test_lib_pacemaker_state.py               |  154 -
 pcs/test/test_lib_sbd.py                           |  554 ++-
 pcs/test/test_lib_tools.py                         |    3 +
 pcs/test/test_node.py                              |  507 ++-
 pcs/test/test_quorum.py                            |   10 +-
 pcs/test/test_resource.py                          | 3599 ++++++++++----------
 pcs/test/test_stonith.py                           | 1425 +++++---
 pcs/test/test_utils.py                             |  204 +-
 pcs/test/test_xml_tools.py                         |  167 +
 pcs/test/tools/assertions.py                       |   52 +-
 pcs/{ => test/tools/check}/__init__.py             |    0
 pcs/test/tools/{test => check}/test_misc.py        |    0
 pcs/test/tools/cib.py                              |   64 +
 pcs/test/tools/color_text_runner/format.py         |    3 +-
 pcs/test/tools/color_text_runner/result.py         |   15 +-
 pcs/test/tools/color_text_runner/writer.py         |   42 +-
 pcs/test/tools/custom_mock.py                      |   77 +-
 pcs/test/tools/integration_lib.py                  |  127 +
 pcs/test/tools/misc.py                             |  116 +-
 pcs/test/tools/xml.py                              |   12 +-
 pcs/usage.py                                       |  577 ++--
 pcs/utils.py                                       |  502 +--
 pcsd/Gemfile                                       |    2 +
 pcsd/Gemfile.lock                                  |   12 +-
 pcsd/Makefile                                      |   21 +-
 pcsd/bootstrap.rb                                  |   19 +-
 pcsd/pcs.rb                                        |  230 +-
 pcsd/pcsd-cli.rb                                   |    2 +-
 pcsd/pcsd.8                                        |  100 +
 pcsd/pcsd.conf                                     |    9 +-
 pcsd/pcsd.rb                                       |    8 +-
 pcsd/pcsd_action_command.rb                        |   92 +
 pcsd/pcsd_exchange_format.rb                       |   52 +
 pcsd/pcsd_file.rb                                  |  189 +
 pcsd/pcsd_remove_file.rb                           |   29 +
 pcsd/public/css/liberation.css                     |    1 -
 pcsd/public/css/overpass.css                       |   17 +-
 pcsd/public/css/overpass_bold-web.eot              |  Bin 32369 -> 0 bytes
 pcsd/public/css/overpass_bold-web.svg              |  470 ---
 pcsd/public/css/overpass_bold-web.ttf              |  Bin 63656 -> 0 bytes
 pcsd/public/css/overpass_bold-web.woff             |  Bin 38056 -> 0 bytes
 pcsd/public/css/overpass_regular-web.eot           |  Bin 31030 -> 0 bytes
 pcsd/public/css/overpass_regular-web.svg           |  470 ---
 pcsd/public/css/overpass_regular-web.ttf           |  Bin 61808 -> 0 bytes
 pcsd/public/css/overpass_regular-web.woff          |  Bin 36352 -> 0 bytes
 pcsd/public/js/nodes-ember.js                      |   12 +-
 pcsd/public/js/pcsd.js                             |   30 +-
 pcsd/remote.rb                                     |  398 ++-
 pcsd/resource.rb                                   |   81 +-
 pcsd/session.rb                                    |    1 +
 pcsd/settings.rb                                   |    3 +
 pcsd/settings.rb.debian                            |    3 +
 pcsd/ssl.rb                                        |   54 +-
 pcsd/test/test_config.rb                           |   12 +-
 pcsd/views/_resource.erb                           |   25 +-
 pcsd/views/main.erb                                |    6 +
 pcsd/views/nodes.erb                               |    9 +
 pylintrc                                           |   26 +-
 setup.py                                           |    5 +-
 249 files changed, 40851 insertions(+), 9451 deletions(-)
 rename pcs/{bash_completion.sh => bash_completion} (100%)
 rename pcs/{test/tools/test => cli/cluster}/__init__.py (100%)
 create mode 100644 pcs/cli/cluster/command.py
 copy pcs/{ => cli/cluster/test}/__init__.py (100%)
 create mode 100644 pcs/cli/cluster/test/test_command.py
 rename pcs/cli/common/{env.py => env_cli.py} (87%)
 create mode 100644 pcs/cli/common/env_file.py
 create mode 100644 pcs/cli/common/test/test_env_file.py
 create mode 100644 pcs/cli/fencing_topology.py
 copy pcs/{ => cli/resource}/__init__.py (100%)
 create mode 100644 pcs/cli/resource/parse_args.py
 copy pcs/{ => cli/resource/test}/__init__.py (100%)
 create mode 100644 pcs/cli/resource/test/test_parse_args.py
 copy pcs/common/{env_file_role_codes.py => fencing_topology.py} (53%)
 create mode 100644 pcs/common/pcs_pycurl.py
 create mode 100644 pcs/common/test/test_tools.py
 create mode 100644 pcs/lib/cib/fencing_topology.py
 create mode 100644 pcs/lib/cib/node.py
 delete mode 100644 pcs/lib/cib/resource.py
 create mode 100644 pcs/lib/cib/resource/__init__.py
 create mode 100644 pcs/lib/cib/resource/bundle.py
 create mode 100644 pcs/lib/cib/resource/clone.py
 create mode 100644 pcs/lib/cib/resource/common.py
 create mode 100644 pcs/lib/cib/resource/group.py
 create mode 100644 pcs/lib/cib/resource/guest_node.py
 create mode 100644 pcs/lib/cib/resource/operations.py
 create mode 100644 pcs/lib/cib/resource/primitive.py
 create mode 100644 pcs/lib/cib/resource/remote_node.py
 create mode 100644 pcs/lib/cib/stonith.py
 rename pcs/{test/test_lib_cib_acl.py => lib/cib/test/test_acl.py} (80%)
 create mode 100644 pcs/lib/cib/test/test_fencing_topology.py
 create mode 100644 pcs/lib/cib/test/test_node.py
 delete mode 100644 pcs/lib/cib/test/test_resource.py
 create mode 100644 pcs/lib/cib/test/test_resource_bundle.py
 create mode 100644 pcs/lib/cib/test/test_resource_clone.py
 create mode 100644 pcs/lib/cib/test/test_resource_common.py
 create mode 100644 pcs/lib/cib/test/test_resource_group.py
 create mode 100644 pcs/lib/cib/test/test_resource_guest_node.py
 create mode 100644 pcs/lib/cib/test/test_resource_operations.py
 create mode 100644 pcs/lib/cib/test/test_resource_primitive.py
 create mode 100644 pcs/lib/cib/test/test_resource_remote_node.py
 rename pcs/{test/test_lib_cib_tools.py => lib/cib/test/test_tools.py} (52%)
 create mode 100644 pcs/lib/commands/cluster.py
 create mode 100644 pcs/lib/commands/fencing_topology.py
 create mode 100644 pcs/lib/commands/node.py
 create mode 100644 pcs/lib/commands/resource.py
 create mode 100644 pcs/lib/commands/stonith.py
 copy pcs/{ => lib/commands/test/resource}/__init__.py (100%)
 create mode 100644 pcs/lib/commands/test/resource/common.py
 create mode 100644 pcs/lib/commands/test/resource/fixture.py
 create mode 100644 pcs/lib/commands/test/resource/test_bundle_create.py
 create mode 100644 pcs/lib/commands/test/resource/test_bundle_update.py
 create mode 100644 pcs/lib/commands/test/resource/test_resource_create.py
 create mode 100644 pcs/lib/commands/test/resource/test_resource_enable_disable.py
 create mode 100644 pcs/lib/commands/test/resource/test_resource_manage_unmanage.py
 create mode 100644 pcs/lib/commands/test/test_fencing_topology.py
 create mode 100644 pcs/lib/commands/test/test_node.py
 create mode 100644 pcs/lib/env_tools.py
 create mode 100644 pcs/lib/node_communication_format.py
 copy pcs/{ => lib/pacemaker}/__init__.py (100%)
 create mode 100644 pcs/lib/pacemaker/env.py
 rename pcs/lib/{pacemaker.py => pacemaker/live.py} (62%)
 rename pcs/lib/{pacemaker_state.py => pacemaker/state.py} (53%)
 copy pcs/{ => lib/pacemaker/test}/__init__.py (100%)
 rename pcs/{test/test_lib_pacemaker.py => lib/pacemaker/test/test_live.py} (74%)
 create mode 100644 pcs/lib/pacemaker/test/test_state.py
 rename pcs/lib/{test/test_pacemaker_values.py => pacemaker/test/test_values.py} (75%)
 rename pcs/lib/{pacemaker_values.py => pacemaker/values.py} (54%)
 rename pcs/{test/test_lib_env.py => lib/test/test_env.py} (77%)
 create mode 100644 pcs/lib/test/test_node_communication_format.py
 rename pcs/{test/test_lib_nodes_task.py => lib/test/test_nodes_task.py} (68%)
 create mode 100644 pcs/lib/test/test_validate.py
 create mode 100644 pcs/lib/validate.py
 create mode 100644 pcs/lib/xml_tools.py
 copy pcs/{ => test/cib_resource}/__init__.py (100%)
 create mode 100644 pcs/test/cib_resource/common.py
 create mode 100644 pcs/test/cib_resource/stonith_common.py
 create mode 100644 pcs/test/cib_resource/test_bundle.py
 create mode 100644 pcs/test/cib_resource/test_create.py
 create mode 100644 pcs/test/cib_resource/test_manage_unmanage.py
 create mode 100644 pcs/test/cib_resource/test_operation_add.py
 create mode 100644 pcs/test/cib_resource/test_stonith_create.py
 create mode 100644 pcs/test/cib_resource/test_stonith_enable_disable.py
 copy pcs/test/resources/{cib-empty-withnodes.xml => cib-empty-2.3-withnodes.xml} (62%)
 copy pcs/test/resources/{cib-empty-withnodes.xml => cib-empty-2.5-withnodes.xml} (62%)
 copy pcs/test/resources/{cib-empty-1.2.xml => cib-empty-2.6.xml} (55%)
 copy pcs/test/resources/{cib-empty-1.2.xml => cib-empty-2.8.xml} (55%)
 copy pcs/test/resources/{cib-empty-withnodes.xml => cib-empty-with3nodes.xml} (92%)
 create mode 100644 pcs/test/resources/resource_agent_ocf_heartbeat_dummy.xml
 create mode 100644 pcs/test/test_cluster_pcmk_remote.py
 delete mode 100644 pcs/test/test_lib_pacemaker_state.py
 create mode 100644 pcs/test/test_xml_tools.py
 copy pcs/{ => test/tools/check}/__init__.py (100%)
 rename pcs/test/tools/{test => check}/test_misc.py (100%)
 create mode 100644 pcs/test/tools/cib.py
 create mode 100644 pcs/test/tools/integration_lib.py
 create mode 100644 pcsd/pcsd.8
 create mode 100644 pcsd/pcsd_action_command.rb
 create mode 100644 pcsd/pcsd_exchange_format.rb
 create mode 100644 pcsd/pcsd_file.rb
 create mode 100644 pcsd/pcsd_remove_file.rb
 mode change 100755 => 100644 pcsd/public/css/liberation.css
 mode change 100755 => 100644 pcsd/public/css/overpass.css
 delete mode 100755 pcsd/public/css/overpass_bold-web.eot
 delete mode 100755 pcsd/public/css/overpass_bold-web.svg
 delete mode 100755 pcsd/public/css/overpass_bold-web.ttf
 delete mode 100755 pcsd/public/css/overpass_bold-web.woff
 delete mode 100755 pcsd/public/css/overpass_regular-web.eot
 delete mode 100755 pcsd/public/css/overpass_regular-web.svg
 delete mode 100755 pcsd/public/css/overpass_regular-web.ttf
 delete mode 100755 pcsd/public/css/overpass_regular-web.woff

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-ha/pcs.git



More information about the Debian-HA-Commits mailing list