[Debian-ha-commits] [pcs] branch master updated (a0226e0 -> a6c99c4)

Valentin Vidic vvidic-guest at moszumanska.debian.org
Tue Jul 5 13:00:13 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  a0226e0   debian/tests: detect testsuite failures
       new  5049379   Drop unused ruby-eventmachine dependency
       new  12263e7   Imported Upstream version 0.9.153
       new  5cbeef1   Merge tag 'upstream/0.9.153'
       new  9148d52   Revert "debian/tests: detect testsuite failures"
       new  c594062   debian/tests: ignore corosync-qdevice stop failure
       new  fbe6434   Fix script permissions: pcsd.service-runner
       new  dc327cc   Refresh patches
       new  a6c99c4   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:
 .pylintrc                                          |    2 +-
 Makefile                                           |   10 +-
 debian/changelog                                   |    5 +-
 debian/control                                     |    1 -
 debian/patches/0008-Fix-corosync-log.patch         |    2 +-
 debian/patches/0009-Fix-testsuite.patch            |   10 +-
 debian/rules                                       |    1 +
 debian/tests/setup                                 |    2 +-
 debian/tests/testsuite-pcs                         |    5 +-
 pcs/alert.py                                       |  237 ++
 pcs/app.py                                         |    6 +
 pcs/cli/common/env.py                              |    1 +
 pcs/cli/common/lib_wrapper.py                      |   39 +-
 pcs/cli/common/middleware.py                       |    2 +-
 pcs/cluster.py                                     |  138 +-
 pcs/common/report_codes.py                         |   38 +-
 pcs/config.py                                      |    4 +
 pcs/lib/cib/alert.py                               |  281 +++
 pcs/lib/cib/nvpair.py                              |   90 +
 pcs/lib/cib/test/test_alert.py                     |  931 +++++++
 pcs/lib/cib/test/test_nvpair.py                    |  206 ++
 pcs/lib/cib/tools.py                               |  127 +
 pcs/lib/commands/alert.py                          |  169 ++
 pcs/lib/commands/qdevice.py                        |   88 +-
 pcs/lib/commands/quorum.py                         |  238 +-
 pcs/lib/commands/test/test_alert.py                |  639 +++++
 pcs/lib/commands/test/test_ticket.py               |    2 +-
 pcs/lib/corosync/config_facade.py                  |   98 +-
 pcs/lib/corosync/live.py                           |   30 +
 pcs/lib/corosync/qdevice_client.py                 |   93 +
 pcs/lib/corosync/qdevice_net.py                    |  314 ++-
 pcs/lib/env.py                                     |   43 +-
 pcs/lib/errors.py                                  |    6 +-
 pcs/lib/external.py                                |   44 +-
 pcs/lib/nodes_task.py                              |   69 +-
 pcs/lib/pacemaker.py                               |   17 +-
 pcs/lib/reports.py                                 |  329 ++-
 pcs/lib/sbd.py                                     |   14 +-
 pcs/pcs.8                                          |   63 +-
 pcs/qdevice.py                                     |   71 +
 pcs/quorum.py                                      |   41 +-
 pcs/resource.py                                    |    3 +-
 pcs/settings_default.py                            |    9 +-
 .../{cib-empty-1.2.xml => cib-empty-2.5.xml}       |    2 +-
 pcs/test/resources/qdevice-certs/qnetd-cacert.crt  |    1 +
 pcs/test/suite.py                                  |    6 +-
 pcs/test/test_alert.py                             |  363 +++
 pcs/test/test_lib_cib_tools.py                     |  181 +-
 pcs/test/test_lib_commands_qdevice.py              |  255 ++
 pcs/test/test_lib_commands_quorum.py               | 1161 ++++++++-
 pcs/test/test_lib_corosync_config_facade.py        |  367 ++-
 pcs/test/test_lib_corosync_live.py                 |  104 +-
 pcs/test/test_lib_corosync_qdevice_client.py       |   60 +
 pcs/test/test_lib_corosync_qdevice_net.py          |  965 ++++++-
 pcs/test/test_lib_env.py                           |  282 ++-
 pcs/test/test_lib_external.py                      |  126 +-
 pcs/test/test_lib_nodes_task.py                    |  168 +-
 pcs/test/test_lib_pacemaker.py                     |   24 +-
 pcs/test/test_lib_sbd.py                           |   10 +-
 pcs/test/test_quorum.py                            |    9 +-
 pcs/test/test_resource.py                          |    6 +
 pcs/test/test_stonith.py                           |    3 +
 pcs/test/test_utils.py                             | 2628 +++++++++++---------
 pcs/test/tools/color_text_runner.py                |   10 +
 pcs/usage.py                                       |  109 +-
 pcs/utils.py                                       |  156 +-
 pcsd/bootstrap.rb                                  |    2 +-
 pcsd/pcs.rb                                        |   17 +
 pcsd/pcsd.service                                  |    2 +-
 pcsd/pcsd.service-runner                           |   13 +
 pcsd/remote.rb                                     |  234 +-
 pcsd/settings.rb                                   |    6 +
 pcsd/settings.rb.debian                            |   10 +-
 pcsd/views/main.erb                                |   13 +-
 pcsd/views/nodes.erb                               |   14 +-
 setup.py                                           |    2 +-
 76 files changed, 10129 insertions(+), 1698 deletions(-)
 create mode 100644 pcs/alert.py
 create mode 100644 pcs/lib/cib/alert.py
 create mode 100644 pcs/lib/cib/nvpair.py
 create mode 100644 pcs/lib/cib/test/test_alert.py
 create mode 100644 pcs/lib/cib/test/test_nvpair.py
 create mode 100644 pcs/lib/commands/alert.py
 create mode 100644 pcs/lib/commands/test/test_alert.py
 create mode 100644 pcs/lib/corosync/qdevice_client.py
 copy pcs/test/resources/{cib-empty-1.2.xml => cib-empty-2.5.xml} (82%)
 create mode 100644 pcs/test/resources/qdevice-certs/qnetd-cacert.crt
 create mode 100644 pcs/test/test_alert.py
 create mode 100644 pcs/test/test_lib_corosync_qdevice_client.py
 create mode 100644 pcsd/pcsd.service-runner

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