[Debian-ha-commits] [pcs] 02/08: Merge tag 'upstream/0.9.155'

Valentin Vidic vvidic-guest at moszumanska.debian.org
Sun Nov 13 15:37:15 UTC 2016


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

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

commit 3b7f28ef9e3866e7429e012fa02bfc7a29214db7
Merge: 9d8ea64 0cfd359
Author: Valentin Vidic <Valentin.Vidic at CARNet.hr>
Date:   Sun Nov 13 13:32:37 2016 +0100

    Merge tag 'upstream/0.9.155'
    
    Upstream version 0.9.155

 CHANGELOG.md                                       |   41 +
 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 --
 pcs/test/tools/color_text_runner/__init__.py       |    8 +
 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 +-
 96 files changed, 10353 insertions(+), 3869 deletions(-)

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