[Debian-ha-commits] [pcs] branch master updated (9d8ea64 -> 1cc113e)

Valentin Vidic vvidic-guest at moszumanska.debian.org
Sun Nov 13 15:37:14 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  9d8ea64   Add lsb-base dependency to fix lintian error
       new  0cfd359   New upstream version 0.9.155
       new  3b7f28e   Merge tag 'upstream/0.9.155'
       new  6d37d06   Update Vcs-Browser to use https
       new  1d59eb9   Fix jquery path in debian/copyright
       new  17aee63   Fix spelling in pcs manpage
       new  c589b44   Remove unused lintian override
       new  a900c12   Update debian/patches
       new  1cc113e   Update changelog

The 8 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                                       |   41 +
 debian/changelog                                   |   12 +
 debian/control                                     |    2 +-
 debian/copyright                                   |    2 +-
 debian/patches/0003-Fix-spelling.patch             |   25 +
 debian/patches/0005-settings.py                    |   17 +-
 debian/patches/0008-Fix-corosync-log.patch         |    7 +-
 debian/patches/0009-Fix-testsuite.patch            |  112 +-
 debian/patches/0010-Replace-chkconfig.patch        |  198 +--
 debian/patches/series                              |    1 +
 debian/source/lintian-overrides                    |    2 -
 newversion.py                                      |    7 +-
 pcs/acl.py                                         |  529 +++----
 pcs/alert.py                                       |   20 +-
 pcs/app.py                                         |    6 +-
 pcs/cli/booth/console_report.py                    |  140 ++
 pcs/cli/booth/test/test_env.py                     |    6 +-
 pcs/cli/booth/test/test_reports.py                 |  141 ++
 pcs/cli/common/console_report.py                   |  731 +++++++++
 pcs/cli/common/env.py                              |    1 +
 pcs/cli/common/lib_wrapper.py                      |  168 +-
 pcs/cli/common/middleware.py                       |   16 +
 pcs/cli/common/reports.py                          |   65 +-
 pcs/cli/common/test/test_console_report.py         |  221 ++-
 pcs/cli/common/test/test_lib_wrapper.py            |    6 +-
 pcs/cli/common/test/test_reports.py                |   84 +
 pcs/cli/constraint_all/console_report.py           |   31 +-
 pcs/cli/constraint_all/test/test_console_report.py |   47 +-
 pcs/cluster.py                                     |  124 +-
 pcs/common/report_codes.py                         |   16 +-
 pcs/lib/booth/reports.py                           |   58 -
 pcs/lib/booth/test/test_sync.py                    |    6 -
 pcs/lib/cib/acl.py                                 |  361 ++++-
 pcs/lib/cib/alert.py                               |   30 +-
 pcs/lib/cib/nvpair.py                              |   64 +-
 pcs/lib/cib/test/test_alert.py                     |   37 +-
 pcs/lib/cib/test/test_nvpair.py                    |  142 +-
 pcs/lib/cib/tools.py                               |   29 +-
 pcs/lib/cluster_conf_facade.py                     |   59 +
 pcs/lib/commands/acl.py                            |  333 ++++
 pcs/lib/commands/alert.py                          |   44 +-
 pcs/lib/commands/resource_agent.py                 |  115 ++
 pcs/lib/commands/sbd.py                            |   61 +-
 pcs/lib/commands/stonith_agent.py                  |   45 +
 pcs/lib/commands/test/test_acl.py                  |  510 ++++++
 pcs/lib/commands/test/test_alert.py                |  154 +-
 pcs/lib/commands/test/test_booth.py                |    2 -
 pcs/lib/commands/test/test_resource_agent.py       |  362 +++++
 pcs/lib/commands/test/test_stonith_agent.py        |  212 +++
 pcs/lib/corosync/live.py                           |   14 +-
 pcs/lib/env.py                                     |   26 +-
 pcs/lib/errors.py                                  |   20 +-
 pcs/lib/external.py                                |   56 +-
 pcs/lib/reports.py                                 |  422 ++---
 pcs/lib/resource_agent.py                          |  851 ++++++----
 pcs/lib/sbd.py                                     |    9 +-
 pcs/lib/test/test_cluster_conf_facade.py           |  151 ++
 pcs/lib/test/test_pacemaker_values.py              |    7 +-
 pcs/lib/test/test_resource_agent.py                | 1631 ++++++++++++++++++++
 pcs/pcs.8                                          |   32 +-
 pcs/resource.py                                    |  804 +++++-----
 pcs/settings_default.py                            |    9 +-
 pcs/stonith.py                                     |  207 +--
 pcs/test/suite.py                                  |   66 +-
 pcs/test/test_acl.py                               |  142 +-
 pcs/test/test_alert.py                             |  151 +-
 pcs/test/test_booth.py                             |    5 +-
 pcs/test/test_cluster.py                           |   40 +-
 pcs/test/test_constraints.py                       |  105 +-
 pcs/test/test_lib_cib_acl.py                       |  984 +++++++++++-
 pcs/test/test_lib_cib_tools.py                     |   87 ++
 pcs/test/test_lib_commands_sbd.py                  |   84 +-
 pcs/test/test_lib_corosync_live.py                 |   25 +
 pcs/test/test_lib_env.py                           |   51 +-
 pcs/test/test_lib_external.py                      |   80 +-
 pcs/test/test_lib_resource_agent.py                |  893 -----------
 pcs/test/test_lib_sbd.py                           |   32 +-
 pcs/test/test_resource.py                          | 1067 ++++++++-----
 pcs/test/test_rule.py                              |    5 +-
 pcs/test/test_stonith.py                           |   53 +-
 pcs/test/tools/assertions.py                       |    2 +-
 pcs/test/tools/color_text_runner.py                |  117 --
 .../tools/color_text_runner/__init__.py}           |    3 +-
 pcs/test/tools/color_text_runner/format.py         |  157 ++
 pcs/test/tools/color_text_runner/result.py         |  120 ++
 pcs/test/tools/color_text_runner/writer.py         |  132 ++
 pcs/test/tools/misc.py                             |    8 +
 pcs/test/tools/pcs_runner.py                       |    2 +-
 pcs/test/tools/pcs_unittest.py                     |    1 +
 pcs/{ => test/tools/test}/__init__.py              |    0
 pcs/test/tools/test/test_misc.py                   |   45 +
 pcs/usage.py                                       |   41 +-
 pcs/utils.py                                       |  174 +--
 pcsd/Makefile                                      |    2 +-
 pcsd/auth.rb                                       |    1 +
 pcsd/bootstrap.rb                                  |    3 +-
 pcsd/cluster_entity.rb                             |    6 +-
 pcsd/fenceagent.rb                                 |   18 +-
 pcsd/pcs.rb                                        |   73 +-
 pcsd/public/js/pcsd.js                             |    4 +-
 pcsd/remote.rb                                     |  158 +-
 pcsd/settings.rb                                   |    4 -
 pcsd/settings.rb.debian                            |    5 +-
 pcsd/views/_acls.erb                               |    4 +-
 .pylintrc => pylintrc                              |    2 +-
 setup.py                                           |    2 +-
 106 files changed, 10588 insertions(+), 4007 deletions(-)
 create mode 100644 CHANGELOG.md
 create mode 100644 debian/patches/0003-Fix-spelling.patch
 create mode 100644 pcs/cli/booth/console_report.py
 create mode 100644 pcs/cli/booth/test/test_reports.py
 create mode 100644 pcs/cli/common/test/test_reports.py
 create mode 100644 pcs/lib/cluster_conf_facade.py
 create mode 100644 pcs/lib/commands/acl.py
 create mode 100644 pcs/lib/commands/resource_agent.py
 create mode 100644 pcs/lib/commands/stonith_agent.py
 create mode 100644 pcs/lib/commands/test/test_acl.py
 create mode 100644 pcs/lib/commands/test/test_resource_agent.py
 create mode 100644 pcs/lib/commands/test/test_stonith_agent.py
 create mode 100644 pcs/lib/test/test_cluster_conf_facade.py
 create mode 100644 pcs/lib/test/test_resource_agent.py
 delete mode 100644 pcs/test/test_lib_resource_agent.py
 delete mode 100644 pcs/test/tools/color_text_runner.py
 copy pcs/{common/env_file_role_codes.py => test/tools/color_text_runner/__init__.py} (57%)
 create mode 100644 pcs/test/tools/color_text_runner/format.py
 create mode 100644 pcs/test/tools/color_text_runner/result.py
 create mode 100644 pcs/test/tools/color_text_runner/writer.py
 copy pcs/{ => test/tools/test}/__init__.py (100%)
 create mode 100644 pcs/test/tools/test/test_misc.py
 rename .pylintrc => pylintrc (99%)

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