This commit is contained in:
parent
2da5384beb
commit
3f19129bd2
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ecddb0afb63f5ce4be3f7d955b4f87dbec8db04d8419ab42a7bc3ff5a60133cc
|
||||
size 625250
|
||||
oid sha256:8f38628315b4d67f63b5ad17fdd9ec8e5ceca6a49256b5eb6027db2d6b56f454
|
||||
size 630905
|
||||
|
@ -1,3 +1,69 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 10 13:54:38 CET 2009 - abeekhof@suse.de
|
||||
|
||||
- Update for SLE11 HAE RC6.1
|
||||
- Update source tarball to revision: 37e5ae18279e
|
||||
+ High: Fix compilation on x64 - We dont need longclock_t intervals/precision for debug timers
|
||||
+ High: cib: Bug bnc#482885 - Simplify CIB disk-writes to prevent data loss
|
||||
+ High: Tools: The default re-ping interval for pingd should be 1s not 1ms
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 15:19:28 CET 2009 - abeekhof@suse.de
|
||||
|
||||
- Update for SLE11 HAE RC6
|
||||
- Remove heartbeat-specific binary from the distribution
|
||||
- Update source tarball to revision: 3028846cc3f5
|
||||
+ High: PE: Bug bnc#478687 - Don't crash when clone-max is 0
|
||||
+ High: PE: Bug LF#2087 - Correctly parse the state of anonymous clones that have multiple instances on a given node
|
||||
+ High: PE: Bug LF:2075 - Fix large pingd memory leaks
|
||||
+ High: PE: Bug bnc#466788 - Make colocation based on node attributes work
|
||||
+ High: PE: Correctly attach orphaned clone children to their parent
|
||||
+ High: PE: Fix memory leak in LogActions
|
||||
+ High: PE: Fix the determination of whether a group is active
|
||||
+ High: PE: Look up the correct promotion preference for anonymous masters
|
||||
+ High: PE: Simplify handling of start failures by changing the default migration-threshold to INFINITY
|
||||
+ High: Tools: Bug bnc#483365 - Ensure the command from cluster_test includes a value for --log-facility
|
||||
+ High: Tools: crm: add support for command aliases and some common commands (i.e. cd,exit)
|
||||
+ High: Tools: crm: create top configuration nodes if they are missing
|
||||
+ High: Tools: crm: fix parsing attributes for rules (broken by the previous changeset)
|
||||
+ High: Tools: crm: new ra set of commands
|
||||
+ High: Tools: crm: resource agents information management
|
||||
+ High: Tools: crm: support for no value attribute in nvpairs
|
||||
+ High: Tools: hb2openais: fix ocfs2 processing
|
||||
+ High: Tools: pingd - prevent double free of getaddrinfo() output in error path
|
||||
+ High: ais: Correctly handle a return value of zero from openais_dispatch_recv()
|
||||
+ High: ais: Fix memory leak in error path
|
||||
+ High: ais: IPC messages are only in scope until a response is sent
|
||||
+ High: cib: Bug bnc#482885 - Simplify CIB disk-writes to prevent data loss. Required a change to the backup filename format
|
||||
+ High: crm: Avoid infinite loop during crm configure edit (bnc#480327)
|
||||
+ High: crmd: Avoid a race condition by waiting for the attrd update to trigger a transition automatically
|
||||
+ High: crmd: Bug bnc#479543 - Correctly find the migration source for timed out migrate_from actions
|
||||
+ High: crmd: Fix memory leaks found by valgrind
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 5 16:42:23 CET 2009 - abeekhof@suse.de
|
||||
|
||||
- heartbeat-common _must_ be a PreReq: instead of a Requires: so that
|
||||
the script which creates hacluster/haclient has completed before
|
||||
Pacemaker is installed. Otherwise the file permissions are all wrong.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 3 16:40:20 CET 2009 - abeekhof@suse.de
|
||||
|
||||
- Add man page for the crm shell
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 27 13:00:00 CET 2009 - lmb@suse.de
|
||||
|
||||
- Update source tarball to revision: e0f361e9bd17
|
||||
- High: Tools: cli: fix and improve delete command
|
||||
- High: Tools: crm: support rsc/op_defaults
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 25 16:30:59 CET 2009 - abeekhof@suse.de
|
||||
|
||||
- Add extra soft dependancies: graphviz, libdlm, heartbeat-resources
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:37:32 CET 2009 - abeekhof@suse.de
|
||||
|
||||
|
@ -37,7 +37,7 @@
|
||||
Name: pacemaker
|
||||
Summary: The Pacemaker scalable High-Availability cluster resource manager
|
||||
Version: 1.0.1
|
||||
Release: 14
|
||||
Release: 16
|
||||
License: GPL v2 or later; LGPL v2.1 or later
|
||||
Url: http://www.clusterlabs.org
|
||||
Group: Productivity/Clustering/HA
|
||||
@ -47,7 +47,7 @@ Source100: pacemaker.rpmlintrc
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
AutoReqProv: on
|
||||
Conflicts: heartbeat < 2.99
|
||||
Requires: heartbeat-common
|
||||
PreReq: heartbeat-common
|
||||
Requires: libpacemaker3 = %{version}-%{release}
|
||||
BuildRequires: e2fsprogs-devel glib2-devel gnutls-devel libesmtp-devel libheartbeat-devel libxml2-devel libxslt-devel ncurses-devel net-snmp-devel pam-devel pkgconfig python-devel swig
|
||||
%if %with_ais_support
|
||||
@ -60,6 +60,8 @@ Requires: heartbeat
|
||||
%endif
|
||||
%if 0%{?suse_version}
|
||||
BuildRequires: libbz2-devel
|
||||
Suggests: graphviz
|
||||
Recommends: libdlm heartbeat-resources
|
||||
%if 0%{?suse_version} > 1100
|
||||
BuildRequires: docbook-xsl-stylesheets
|
||||
%endif
|
||||
@ -230,11 +232,9 @@ rm -rf $RPM_BUILD_DIR/pacemaker
|
||||
###########################################################
|
||||
%defattr(-,root,root)
|
||||
%dir %{_libdir}/heartbeat
|
||||
%dir %{_var}/run/heartbeat
|
||||
%dir %{_var}/lib/heartbeat
|
||||
%dir %{_datadir}/doc/packages/pacemaker
|
||||
%{_datadir}/pacemaker
|
||||
#%{_datadir}/heartbeat
|
||||
%{_libdir}/heartbeat/*
|
||||
%{_sbindir}/cibadmin
|
||||
%{_sbindir}/crm_attribute
|
||||
@ -245,7 +245,7 @@ rm -rf $RPM_BUILD_DIR/pacemaker
|
||||
%{_sbindir}/crm
|
||||
%{_sbindir}/crm_resource
|
||||
%{_sbindir}/crm_standby
|
||||
%{_sbindir}/crm_uuid
|
||||
%exclude %{_sbindir}/crm_uuid
|
||||
%{_sbindir}/crm_verify
|
||||
%{_sbindir}/crmadmin
|
||||
%{_sbindir}/iso8601
|
||||
@ -262,8 +262,8 @@ rm -rf $RPM_BUILD_DIR/pacemaker
|
||||
%doc %{_datadir}/doc/packages/pacemaker/crm_cli.txt
|
||||
%doc %{_mandir}/man8/*.8*
|
||||
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/heartbeat/crm
|
||||
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/heartbeat/pengine
|
||||
%dir %attr (750, %{uname}, %{gname}) %{_var}/run/heartbeat/crm
|
||||
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/pengine
|
||||
%dir %attr (750, %{uname}, %{gname}) %{_var}/run/crm
|
||||
%dir /usr/lib/ocf
|
||||
%dir /usr/lib/ocf/resource.d
|
||||
/usr/lib/ocf/resource.d/pacemaker
|
||||
@ -290,6 +290,54 @@ rm -rf $RPM_BUILD_DIR/pacemaker
|
||||
%{_libdir}/*.so
|
||||
|
||||
%changelog
|
||||
* Tue Mar 10 2009 abeekhof@suse.de
|
||||
- Update for SLE11 HAE RC6.1
|
||||
- Update source tarball to revision: 37e5ae18279e
|
||||
+ High: Fix compilation on x64 - We dont need longclock_t intervals/precision for debug timers
|
||||
+ High: cib: Bug bnc#482885 - Simplify CIB disk-writes to prevent data loss
|
||||
+ High: Tools: The default re-ping interval for pingd should be 1s not 1ms
|
||||
* Mon Mar 09 2009 abeekhof@suse.de
|
||||
- Update for SLE11 HAE RC6
|
||||
- Remove heartbeat-specific binary from the distribution
|
||||
- Update source tarball to revision: 3028846cc3f5
|
||||
+ High: PE: Bug bnc#478687 - Don't crash when clone-max is 0
|
||||
+ High: PE: Bug LF#2087 - Correctly parse the state of anonymous clones that have multiple instances on a given node
|
||||
+ High: PE: Bug LF:2075 - Fix large pingd memory leaks
|
||||
+ High: PE: Bug bnc#466788 - Make colocation based on node attributes work
|
||||
+ High: PE: Correctly attach orphaned clone children to their parent
|
||||
+ High: PE: Fix memory leak in LogActions
|
||||
+ High: PE: Fix the determination of whether a group is active
|
||||
+ High: PE: Look up the correct promotion preference for anonymous masters
|
||||
+ High: PE: Simplify handling of start failures by changing the default migration-threshold to INFINITY
|
||||
+ High: Tools: Bug bnc#483365 - Ensure the command from cluster_test includes a value for --log-facility
|
||||
+ High: Tools: crm: add support for command aliases and some common commands (i.e. cd,exit)
|
||||
+ High: Tools: crm: create top configuration nodes if they are missing
|
||||
+ High: Tools: crm: fix parsing attributes for rules (broken by the previous changeset)
|
||||
+ High: Tools: crm: new ra set of commands
|
||||
+ High: Tools: crm: resource agents information management
|
||||
+ High: Tools: crm: support for no value attribute in nvpairs
|
||||
+ High: Tools: hb2openais: fix ocfs2 processing
|
||||
+ High: Tools: pingd - prevent double free of getaddrinfo() output in error path
|
||||
+ High: ais: Correctly handle a return value of zero from openais_dispatch_recv()
|
||||
+ High: ais: Fix memory leak in error path
|
||||
+ High: ais: IPC messages are only in scope until a response is sent
|
||||
+ High: cib: Bug bnc#482885 - Simplify CIB disk-writes to prevent data loss. Required a change to the backup filename format
|
||||
+ High: crm: Avoid infinite loop during crm configure edit (bnc#480327)
|
||||
+ High: crmd: Avoid a race condition by waiting for the attrd update to trigger a transition automatically
|
||||
+ High: crmd: Bug bnc#479543 - Correctly find the migration source for timed out migrate_from actions
|
||||
+ High: crmd: Fix memory leaks found by valgrind
|
||||
* Thu Mar 05 2009 abeekhof@suse.de
|
||||
- heartbeat-common _must_ be a PreReq: instead of a Requires: so that
|
||||
the script which creates hacluster/haclient has completed before
|
||||
Pacemaker is installed. Otherwise the file permissions are all wrong.
|
||||
* Tue Mar 03 2009 abeekhof@suse.de
|
||||
- Add man page for the crm shell
|
||||
* Fri Feb 27 2009 lmb@suse.de
|
||||
- Update source tarball to revision: e0f361e9bd17
|
||||
- High: Tools: cli: fix and improve delete command
|
||||
- High: Tools: crm: support rsc/op_defaults
|
||||
* Wed Feb 25 2009 abeekhof@suse.de
|
||||
- Add extra soft dependancies: graphviz, libdlm, heartbeat-resources
|
||||
* Mon Feb 23 2009 abeekhof@suse.de
|
||||
- Update for SLE11 HAE RC5
|
||||
- Update source tarball to revision: 33e92390b2ed
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a57a5f56ac9b68441be715bf873964fc89df2dd7a2fc0f6f1e5d79d8a3cf129a
|
||||
size 790470
|
||||
oid sha256:3d44996fb880ec0aa4ff86bcdffec7911dc5db9c5794b8c3b2a38afccbc7fc30
|
||||
size 788352
|
||||
|
Loading…
Reference in New Issue
Block a user