[Debian-ha-commits] [pcs] branch master updated (a1e6146 -> a1c33df)

Valentin Vidic vvidic-guest at moszumanska.debian.org
Mon Sep 26 18:16:07 UTC 2016


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

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

      from  a1e6146   Replace chkconfig invocations with update-rc.d
       new  0ae7fe4   New upstream version 0.9.154
       new  603aabc   Merge tag 'upstream/0.9.154'
       new  aa16d3d   Update debian/patches for new version
       new  08cfe4e   Update debian/tests for new version
       new  a1c33df   Update changelog

The 5 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:
 .pylintrc                                          |    2 +-
 Makefile                                           |    2 +-
 debian/changelog                                   |   10 +
 .../0001-Remove-Gemlock.file-on-Debian.patch       |    4 +-
 debian/patches/0006-Replace-orderedhash.patch      |    2 +-
 debian/patches/0007-Fix-IPv6-bind.patch            |    2 +-
 debian/patches/0008-Fix-corosync-log.patch         |    2 +-
 debian/patches/0009-Fix-testsuite.patch            |   13 +-
 debian/patches/0010-Replace-chkconfig.patch        |  194 ++--
 debian/patches/series                              |    1 -
 debian/tests/control                               |    2 +-
 debian/tests/testsuite-pcs                         |    6 +-
 pcs/acl.py                                         |    2 +-
 pcs/alert.py                                       |   57 +-
 pcs/app.py                                         |    7 +
 pcs/booth.py                                       |   78 ++
 pcs/{ => cli/booth}/__init__.py                    |    0
 pcs/cli/booth/command.py                           |  195 ++++
 pcs/cli/booth/env.py                               |  121 ++
 pcs/{ => cli/booth/test}/__init__.py               |    0
 pcs/cli/booth/test/test_command.py                 |   54 +
 pcs/cli/booth/test/test_env.py                     |  118 ++
 pcs/cli/common/console_report.py                   |   13 +-
 pcs/cli/common/env.py                              |    2 +
 pcs/cli/common/lib_wrapper.py                      |   80 +-
 pcs/cli/common/middleware.py                       |    9 +-
 pcs/cli/common/parse_args.py                       |   27 +
 pcs/cli/common/test/test_completion.py             |    2 +-
 pcs/cli/common/test/test_console_report.py         |    2 +-
 pcs/cli/common/test/test_lib_wrapper.py            |   32 +-
 pcs/cli/common/test/test_middleware.py             |    8 +-
 pcs/cli/common/test/test_parse_args.py             |   86 +-
 pcs/cli/constraint/test/test_command.py            |    4 +-
 pcs/cli/constraint/test/test_console_report.py     |    2 +-
 pcs/cli/constraint/test/test_parse_args.py         |    9 +-
 pcs/cli/constraint_all/test/test_console_report.py |    4 +-
 pcs/cli/constraint_ticket/command.py               |    8 +
 pcs/cli/constraint_ticket/test/test_command.py     |   26 +-
 .../constraint_ticket/test/test_console_report.py  |    2 +-
 pcs/cli/constraint_ticket/test/test_parse_args.py  |    2 +-
 pcs/cluster.py                                     |  239 ++--
 pcs/common/env_file_role_codes.py                  |    9 +
 pcs/common/report_codes.py                         |   50 +-
 pcs/{ => common/test}/__init__.py                  |    0
 pcs/common/tools.py                                |    8 +
 pcs/config.py                                      |  111 +-
 pcs/constraint.py                                  |    3 +-
 pcs/{ => lib/booth}/__init__.py                    |    0
 pcs/lib/booth/config_exchange.py                   |   28 +
 pcs/lib/booth/config_files.py                      |  104 ++
 pcs/lib/booth/config_parser.py                     |   91 ++
 pcs/lib/booth/config_structure.py                  |  161 +++
 pcs/lib/booth/env.py                               |  149 +++
 pcs/lib/booth/reports.py                           |  418 +++++++
 pcs/lib/booth/resource.py                          |   97 ++
 pcs/lib/booth/status.py                            |   50 +
 pcs/lib/booth/sync.py                              |  210 ++++
 pcs/{ => lib/booth/test}/__init__.py               |    0
 pcs/lib/booth/test/test_config_exchange.py         |   58 +
 pcs/lib/booth/test/test_config_files.py            |  288 +++++
 pcs/lib/booth/test/test_config_parser.py           |  171 +++
 pcs/lib/booth/test/test_config_structure.py        |  369 ++++++
 pcs/lib/booth/test/test_env.py                     |  225 ++++
 pcs/lib/booth/test/test_resource.py                |  190 +++
 pcs/lib/booth/test/test_status.py                  |  137 +++
 pcs/lib/booth/test/test_sync.py                    | 1215 ++++++++++++++++++++
 pcs/lib/cib/alert.py                               |  129 ++-
 pcs/lib/cib/constraint/ticket.py                   |   33 +-
 pcs/lib/cib/test/test_alert.py                     |  453 +++++++-
 pcs/lib/cib/test/test_constraint.py                |    4 +-
 pcs/lib/cib/test/test_constraint_colocation.py     |    4 +-
 pcs/lib/cib/test/test_constraint_order.py          |    4 +-
 pcs/lib/cib/test/test_constraint_ticket.py         |  138 ++-
 pcs/lib/cib/test/test_nvpair.py                    |    2 +-
 pcs/lib/cib/test/test_resource.py                  |    2 +-
 pcs/lib/cib/test/test_resource_set.py              |    4 +-
 pcs/lib/cib/tools.py                               |   59 +-
 pcs/lib/commands/alert.py                          |   45 +-
 pcs/lib/commands/booth.py                          |  383 ++++++
 pcs/lib/commands/constraint/ticket.py              |   23 +
 pcs/lib/commands/qdevice.py                        |   53 +-
 pcs/lib/commands/quorum.py                         |   54 +-
 pcs/lib/commands/sbd.py                            |   31 +-
 pcs/lib/commands/test/test_alert.py                |  115 +-
 pcs/lib/commands/test/test_booth.py                |  614 ++++++++++
 pcs/lib/commands/test/test_constraint_common.py    |    4 +-
 pcs/lib/commands/test/test_ticket.py               |   37 +-
 pcs/lib/corosync/config_facade.py                  |   15 +-
 pcs/lib/corosync/live.py                           |   29 +-
 pcs/lib/corosync/qdevice_client.py                 |    9 +-
 pcs/lib/corosync/qdevice_net.py                    |  105 +-
 pcs/lib/env.py                                     |   44 +-
 pcs/lib/env_file.py                                |  122 ++
 pcs/lib/errors.py                                  |   14 +
 pcs/lib/external.py                                |  165 ++-
 pcs/lib/pacemaker.py                               |   71 +-
 pcs/lib/reports.py                                 |  393 +++++--
 pcs/lib/resource_agent.py                          |   31 +-
 pcs/lib/sbd.py                                     |  111 +-
 pcs/lib/test/misc.py                               |   20 +
 pcs/lib/test/test_env_file.py                      |  187 +++
 pcs/lib/test/test_errors.py                        |   20 +
 pcs/lib/test/test_pacemaker_values.py              |    2 +-
 pcs/node.py                                        |  137 ++-
 pcs/pcs.8                                          |  122 +-
 pcs/prop.py                                        |   39 +-
 pcs/qdevice.py                                     |    4 +-
 pcs/quorum.py                                      |   69 +-
 pcs/resource.py                                    |  213 ++--
 pcs/settings.py.debian                             |    1 +
 pcs/settings_default.py                            |    4 +-
 pcs/status.py                                      |   62 +-
 pcs/stonith.py                                     |   23 +-
 pcs/test/resources/.gitignore                      |    1 +
 ...c-3nodes-qdevice.conf => corosync-qdevice.conf} |    5 -
 pcs/test/resources/tmp_keyfile                     |    1 +
 pcs/test/suite.py                                  |   16 +-
 pcs/test/test_acl.py                               |    2 +-
 pcs/test/test_alert.py                             |  195 +++-
 pcs/test/test_booth.py                             |  420 +++++++
 pcs/test/test_cluster.py                           |  582 ++++++----
 pcs/test/test_common_tools.py                      |   34 +-
 pcs/test/test_constraints.py                       |   46 +-
 pcs/test/test_lib_cib_acl.py                       |    2 +-
 pcs/test/test_lib_cib_tools.py                     |  142 ++-
 pcs/test/test_lib_commands_qdevice.py              |  159 ++-
 pcs/test/test_lib_commands_quorum.py               |  314 ++++-
 pcs/test/test_lib_commands_sbd.py                  |  138 ++-
 pcs/test/test_lib_corosync_config_facade.py        |   30 +-
 pcs/test/test_lib_corosync_config_parser.py        |    2 +-
 pcs/test/test_lib_corosync_live.py                 |   34 +-
 pcs/test/test_lib_corosync_qdevice_client.py       |   12 +-
 pcs/test/test_lib_corosync_qdevice_net.py          |  114 +-
 pcs/test/test_lib_env.py                           |    4 +-
 pcs/test/test_lib_external.py                      |  261 +++--
 pcs/test/test_lib_node.py                          |    2 +-
 pcs/test/test_lib_nodes_task.py                    |    4 +-
 pcs/test/test_lib_pacemaker.py                     |  363 ++++--
 pcs/test/test_lib_pacemaker_state.py               |    2 +-
 pcs/test/test_lib_resource_agent.py                |   43 +-
 pcs/test/test_lib_sbd.py                           |  141 ++-
 pcs/test/test_lib_tools.py                         |    2 +-
 pcs/test/test_node.py                              |  342 +++++-
 pcs/test/test_properties.py                        |  265 ++++-
 pcs/test/test_quorum.py                            |    2 +-
 pcs/test/test_resource.py                          |   59 +-
 pcs/test/test_rule.py                              |    2 +-
 pcs/test/test_stonith.py                           |    2 +-
 pcs/test/test_utils.py                             |   33 +-
 pcs/test/tools/color_text_runner.py                |    9 +-
 pcs/test/tools/misc.py                             |   14 +
 pcs/test/tools/pcs_mock.py                         |   13 -
 pcs/test/tools/pcs_unittest.py                     |  181 +++
 pcs/usage.py                                       |  189 ++-
 pcs/utils.py                                       |  452 +++++---
 pcsd/Gemfile                                       |    1 -
 pcsd/Gemfile.lock                                  |    2 -
 pcsd/Makefile                                      |    1 -
 pcsd/bootstrap.rb                                  |    2 +-
 pcsd/cluster_entity.rb                             |    8 +-
 pcsd/pcs.rb                                        |  205 +++-
 pcsd/pcsd                                          |    2 +
 pcsd/pcsd.debian                                   |    2 +
 pcsd/pcsd.rb                                       |  187 ++-
 pcsd/pcsd.service                                  |    1 +
 pcsd/pcsd.service-runner                           |   25 +-
 pcsd/public/css/style.css                          |   10 +
 pcsd/public/js/nodes-ember.js                      |  251 +++-
 pcsd/public/js/pcsd.js                             |  257 +++--
 pcsd/remote.rb                                     |  284 ++++-
 pcsd/settings.rb                                   |    1 +
 pcsd/settings.rb.debian                            |    2 +-
 pcsd/ssl.rb                                        |   25 +-
 pcsd/views/_dialogs.erb                            |   21 +
 pcsd/views/_resource.erb                           |    8 +-
 pcsd/views/main.erb                                |  165 ++-
 pcsd/views/manage.erb                              |   15 +-
 setup.py                                           |    2 +-
 178 files changed, 13753 insertions(+), 2132 deletions(-)
 create mode 100644 pcs/booth.py
 copy pcs/{ => cli/booth}/__init__.py (100%)
 create mode 100644 pcs/cli/booth/command.py
 create mode 100644 pcs/cli/booth/env.py
 copy pcs/{ => cli/booth/test}/__init__.py (100%)
 create mode 100644 pcs/cli/booth/test/test_command.py
 create mode 100644 pcs/cli/booth/test/test_env.py
 create mode 100644 pcs/common/env_file_role_codes.py
 copy pcs/{ => common/test}/__init__.py (100%)
 copy pcs/{ => lib/booth}/__init__.py (100%)
 create mode 100644 pcs/lib/booth/config_exchange.py
 create mode 100644 pcs/lib/booth/config_files.py
 create mode 100644 pcs/lib/booth/config_parser.py
 create mode 100644 pcs/lib/booth/config_structure.py
 create mode 100644 pcs/lib/booth/env.py
 create mode 100644 pcs/lib/booth/reports.py
 create mode 100644 pcs/lib/booth/resource.py
 create mode 100644 pcs/lib/booth/status.py
 create mode 100644 pcs/lib/booth/sync.py
 copy pcs/{ => lib/booth/test}/__init__.py (100%)
 create mode 100644 pcs/lib/booth/test/test_config_exchange.py
 create mode 100644 pcs/lib/booth/test/test_config_files.py
 create mode 100644 pcs/lib/booth/test/test_config_parser.py
 create mode 100644 pcs/lib/booth/test/test_config_structure.py
 create mode 100644 pcs/lib/booth/test/test_env.py
 create mode 100644 pcs/lib/booth/test/test_resource.py
 create mode 100644 pcs/lib/booth/test/test_status.py
 create mode 100644 pcs/lib/booth/test/test_sync.py
 create mode 100644 pcs/lib/commands/booth.py
 create mode 100644 pcs/lib/commands/test/test_booth.py
 create mode 100644 pcs/lib/env_file.py
 create mode 100644 pcs/lib/test/misc.py
 create mode 100644 pcs/lib/test/test_env_file.py
 create mode 100644 pcs/lib/test/test_errors.py
 copy pcs/test/resources/{corosync-3nodes-qdevice.conf => corosync-qdevice.conf} (86%)
 create mode 100644 pcs/test/resources/tmp_keyfile
 create mode 100644 pcs/test/test_booth.py
 delete mode 100644 pcs/test/tools/pcs_mock.py
 create mode 100644 pcs/test/tools/pcs_unittest.py

-- 
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