This commit is contained in:
parent
ee846e5c2f
commit
2da5384beb
@ -1,8 +1,30 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:37:32 CET 2009 - abeekhof@suse.de
|
||||
|
||||
- Update for SLE11 HAE RC5
|
||||
- Update source tarball to revision: 33e92390b2ed
|
||||
+ High: Core: Prevent unterminated strings after decompression
|
||||
+ High: PE: Clones now default to globally-unique=false
|
||||
+ High: PE: Prevent use-of-NULL for failed migrate actions in process_rsc_state()
|
||||
+ High: PE: Start the correct monitor operation for unmanaged masters
|
||||
+ High: Tools: Cause the correct clone instance to be failed with crm_resource -F
|
||||
+ High: ais: Centralize all quorum calculations in the ais plugin and allow expected votes to be configured int he cib
|
||||
+ High: crmd: Ensure updates for lost migrate operations indicate which node it tried to migrating to
|
||||
+ High: crmd: Fix memory leak in cib notication processing code
|
||||
+ High: crmd: Fix memory leak in transition graph processing
|
||||
+ Medium: Core: Bug BNC#474727 - Set a maximum time to wait for IPC messages
|
||||
+ Medium: PE: Ensure clones always have a value for globally-unique
|
||||
+ Medium: crmd: Add new expected-quorum-votes option
|
||||
+ Medium: crmd: Automatically detect and use new values for crm_config options
|
||||
+ Medium: crmd: Bug BNC#472473 - Don't wait excessive amounts of time for lost actions
|
||||
+ Medium: crmd: Bug BNC#472473 - Reduce the transition timeout to action_timeout+network_delay
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 6 18:12:28 CET 2009 - abeekhof@suse.de
|
||||
|
||||
- Update source tarball to revision: 09be44da9b32
|
||||
+ High: PE: Remove an optimization for the terminate node attribute that caused the cluster to block indefinitly
|
||||
+ High: Tools: Bug BNC:468066 - Don't use the result of uname() when its no longer in scope
|
||||
+ High: Tools: Bug BNC#468066 - Don't use the result of uname() when its no longer in scope
|
||||
+ High: Tools: Bug LF:2036 - crm_resource cannot set/get parameters for cloned resources
|
||||
+ High: ais: Add optional support for the new AIS IPC layer
|
||||
+ High: ais: Always set header.error to the correct default: SA_AIS_OK
|
||||
@ -11,7 +33,7 @@ Fri Feb 6 18:12:28 CET 2009 - abeekhof@suse.de
|
||||
+ High: cib: Allow clients without mainloop to connect to the cib
|
||||
+ High: cib: Fix four moderately sized memory leaks detected by Valgrind
|
||||
+ High: Core: Fix more memory leaks foudn by valgrind
|
||||
+ High: Tools: Bug BNC:473265 - crm_resource -L dumps core
|
||||
+ High: Tools: Bug BNC#473265 - crm_resource -L dumps core
|
||||
+ High: Tools: Bug LF:2046 - Node attribute updates are lost because attrd can take too long to start
|
||||
+ High: Tools: hb2openais: add constraints for clvmd to controld
|
||||
+ High: Tools: hb2openais: improve media processing and set rrp_mode for multiple rings configuration
|
||||
@ -21,12 +43,12 @@ Fri Feb 6 18:12:28 CET 2009 - abeekhof@suse.de
|
||||
Mon Jan 26 11:33:42 CET 2009 - abeekhof@suse.de
|
||||
|
||||
- Update source tarball to revision: 7eef42ed409d
|
||||
+ High: Tools: Bug BNC:468066 - crm_standby - Don't use the result of uname() when its no longer in scope
|
||||
+ High: PE: Bug BNC:465484 - Fix the no-quorum-policy=suicide option
|
||||
+ High: Tools: Bug BNC#468066 - crm_standby - Don't use the result of uname() when its no longer in scope
|
||||
+ High: PE: Bug BNC#465484 - Fix the no-quorum-policy=suicide option
|
||||
+ High: PE: Only shoot online nodes with no-quorum-policy=suicide
|
||||
+ High: ais: Bug BNC:456208 - Prevent deadlocks by not logging in the child process before exec()
|
||||
+ High: ais: Bug BNC#456208 - Prevent deadlocks by not logging in the child process before exec()
|
||||
+ High: ais: Detect and handle situations where ais and the crm disagree on the node name
|
||||
+ High: crmd: Bug BNC:467995 - Delay marking STONITH operations complete until STONITH tells us so
|
||||
+ High: crmd: Bug BNC#467995 - Delay marking STONITH operations complete until STONITH tells us so
|
||||
+ High: crmd: Prevent node attribute loss by detecting attrd disconnections immediately
|
||||
- Enabled support for SNMP and SMTP notifications on resource state changes
|
||||
|
||||
|
@ -37,7 +37,7 @@
|
||||
Name: pacemaker
|
||||
Summary: The Pacemaker scalable High-Availability cluster resource manager
|
||||
Version: 1.0.1
|
||||
Release: 10
|
||||
Release: 14
|
||||
License: GPL v2 or later; LGPL v2.1 or later
|
||||
Url: http://www.clusterlabs.org
|
||||
Group: Productivity/Clustering/HA
|
||||
@ -171,9 +171,8 @@ export CFLAGS
|
||||
--libexecdir=%{_libexecdir} \
|
||||
--with-ais-prefix=%{_prefix} \
|
||||
%if %without_fatal_warnings
|
||||
--enable-fatal-warnings=no \
|
||||
--enable-fatal-warnings=no
|
||||
%endif
|
||||
--with-hapkgversion=%{version}
|
||||
export MAKE="make %{?jobs:-j%jobs}"
|
||||
make %{?jobs:-j%jobs}
|
||||
if [ -e /usr/share/xml/docbook/stylesheet/nwalsh/current ]; then
|
||||
@ -291,10 +290,28 @@ rm -rf $RPM_BUILD_DIR/pacemaker
|
||||
%{_libdir}/*.so
|
||||
|
||||
%changelog
|
||||
* Mon Feb 23 2009 abeekhof@suse.de
|
||||
- Update for SLE11 HAE RC5
|
||||
- Update source tarball to revision: 33e92390b2ed
|
||||
+ High: Core: Prevent unterminated strings after decompression
|
||||
+ High: PE: Clones now default to globally-unique=false
|
||||
+ High: PE: Prevent use-of-NULL for failed migrate actions in process_rsc_state()
|
||||
+ High: PE: Start the correct monitor operation for unmanaged masters
|
||||
+ High: Tools: Cause the correct clone instance to be failed with crm_resource -F
|
||||
+ High: ais: Centralize all quorum calculations in the ais plugin and allow expected votes to be configured int he cib
|
||||
+ High: crmd: Ensure updates for lost migrate operations indicate which node it tried to migrating to
|
||||
+ High: crmd: Fix memory leak in cib notication processing code
|
||||
+ High: crmd: Fix memory leak in transition graph processing
|
||||
+ Medium: Core: Bug BNC#474727 - Set a maximum time to wait for IPC messages
|
||||
+ Medium: PE: Ensure clones always have a value for globally-unique
|
||||
+ Medium: crmd: Add new expected-quorum-votes option
|
||||
+ Medium: crmd: Automatically detect and use new values for crm_config options
|
||||
+ Medium: crmd: Bug BNC#472473 - Don't wait excessive amounts of time for lost actions
|
||||
+ Medium: crmd: Bug BNC#472473 - Reduce the transition timeout to action_timeout+network_delay
|
||||
* Fri Feb 06 2009 abeekhof@suse.de
|
||||
- Update source tarball to revision: 09be44da9b32
|
||||
+ High: PE: Remove an optimization for the terminate node attribute that caused the cluster to block indefinitly
|
||||
+ High: Tools: Bug BNC:468066 - Don't use the result of uname() when its no longer in scope
|
||||
+ High: Tools: Bug BNC#468066 - Don't use the result of uname() when its no longer in scope
|
||||
+ High: Tools: Bug LF:2036 - crm_resource cannot set/get parameters for cloned resources
|
||||
+ High: ais: Add optional support for the new AIS IPC layer
|
||||
+ High: ais: Always set header.error to the correct default: SA_AIS_OK
|
||||
@ -303,19 +320,19 @@ rm -rf $RPM_BUILD_DIR/pacemaker
|
||||
+ High: cib: Allow clients without mainloop to connect to the cib
|
||||
+ High: cib: Fix four moderately sized memory leaks detected by Valgrind
|
||||
+ High: Core: Fix more memory leaks foudn by valgrind
|
||||
+ High: Tools: Bug BNC:473265 - crm_resource -L dumps core
|
||||
+ High: Tools: Bug BNC#473265 - crm_resource -L dumps core
|
||||
+ High: Tools: Bug LF:2046 - Node attribute updates are lost because attrd can take too long to start
|
||||
+ High: Tools: hb2openais: add constraints for clvmd to controld
|
||||
+ High: Tools: hb2openais: improve media processing and set rrp_mode for multiple rings configuration
|
||||
+ High: Tools: hb2openais: openais supports up to two rings
|
||||
* Mon Jan 26 2009 abeekhof@suse.de
|
||||
- Update source tarball to revision: 7eef42ed409d
|
||||
+ High: Tools: Bug BNC:468066 - crm_standby - Don't use the result of uname() when its no longer in scope
|
||||
+ High: PE: Bug BNC:465484 - Fix the no-quorum-policy=suicide option
|
||||
+ High: Tools: Bug BNC#468066 - crm_standby - Don't use the result of uname() when its no longer in scope
|
||||
+ High: PE: Bug BNC#465484 - Fix the no-quorum-policy=suicide option
|
||||
+ High: PE: Only shoot online nodes with no-quorum-policy=suicide
|
||||
+ High: ais: Bug BNC:456208 - Prevent deadlocks by not logging in the child process before exec()
|
||||
+ High: ais: Bug BNC#456208 - Prevent deadlocks by not logging in the child process before exec()
|
||||
+ High: ais: Detect and handle situations where ais and the crm disagree on the node name
|
||||
+ High: crmd: Bug BNC:467995 - Delay marking STONITH operations complete until STONITH tells us so
|
||||
+ High: crmd: Bug BNC#467995 - Delay marking STONITH operations complete until STONITH tells us so
|
||||
+ High: crmd: Prevent node attribute loss by detecting attrd disconnections immediately
|
||||
- Enabled support for SNMP and SMTP notifications on resource state changes
|
||||
* Wed Jan 21 2009 abeekhof@suse.de
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ce2cb7e6f68ff98f0f0969e8cc6a8c2be34f036a7ffbc62bbd69f16fd67d9db9
|
||||
size 788705
|
||||
oid sha256:a57a5f56ac9b68441be715bf873964fc89df2dd7a2fc0f6f1e5d79d8a3cf129a
|
||||
size 790470
|
||||
|
Loading…
x
Reference in New Issue
Block a user