Blame SPECS/corosync.spec

963052
# Conditionals
963052
# Invoke "rpmbuild --without <feature>" or "rpmbuild --with <feature>"
963052
# to disable or enable specific features
963052
%bcond_with testagents
963052
%bcond_with watchdog
963052
%bcond_with monitoring
963052
%bcond_without snmp
963052
%bcond_without dbus
963052
# no InfiniBand stack on s390(x)
963052
%ifnarch s390 s390x
963052
%bcond_with rdma
963052
%endif
963052
%bcond_without systemd
963052
%bcond_with upstart
963052
%bcond_without xmlconf
963052
%bcond_without runautogen
963052
963052
%global gitver %{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}
963052
%global gittarver %{?numcomm:.%{numcomm}}%{?alphatag:-%{alphatag}}%{?dirty:-%{dirty}}
963052
963052
Name: corosync
963052
Summary: The Corosync Cluster Engine and Application Programming Interfaces
d26a47
Version: 2.3.4
f36a32
Release: 4%{?gitver}%{?dist}.1
963052
License: BSD
963052
Group: System Environment/Base
963052
URL: http://www.corosync.org/
963052
Source0: http://corosync.org/download/%{name}-%{version}%{?gittarver}.tar.gz
963052
d26a47
Patch0: bz1136429-1-crypto-fix-crypto-block-rounding-padding-calculation.patch
d26a47
Patch1: bz1136429-2-Adjust-MTU-for-IPv6-correctly.patch
d26a47
Patch2: bz1149916-1-init-Don-t-wait-for-ipc-if-corosync-doesn-t-start.patch
d26a47
Patch3: bz1078361-1-manpage-Fix-English.patch
d26a47
Patch4: bz1078361-2-Store-configuration-values-used-by-totem-to-cmap.patch
d26a47
Patch5: bz1078361-3-man-page-Improve-description-of-token-timeout.patch
d26a47
Patch6: bz1184154-1-Handle-adding-and-removing-UDPU-members-atomically.patch
f36a32
Patch7: bz1205336-1-Votequorum-Fix-auto_tie_breaker-default.patch
f36a32
Patch8: bz1205338-1-Don-t-allow-both-two_node-and-auto_tie_breaker-in-co.patch
cf1c78
963052
%if 0%{?rhel}
d26a47
ExclusiveArch: i686 x86_64 s390x
963052
%endif
963052
963052
# Runtime bits
963052
Requires: corosynclib = %{version}-%{release}
963052
Requires(pre): /usr/sbin/useradd
963052
Requires(post): /sbin/chkconfig
963052
Requires(preun): /sbin/chkconfig
963052
Obsoletes: openais, openais-devel, openaislib, openaislib-devel
963052
Obsoletes: cman, clusterlib, clusterlib-devel
963052
963052
# Build bits
963052
963052
BuildRequires: groff
963052
BuildRequires: libqb-devel >= 0.14.2
963052
BuildRequires: nss-devel
963052
%if %{with runautogen}
963052
BuildRequires: autoconf automake libtool
963052
%endif
963052
%if %{with monitoring}
963052
BuildRequires: libstatgrab-devel
963052
%endif
963052
%if %{with rdma}
963052
BuildRequires: libibverbs-devel librdmacm-devel
963052
%endif
963052
%if %{with snmp}
963052
BuildRequires: net-snmp-devel
963052
%endif
963052
%if %{with dbus}
963052
BuildRequires: dbus-devel
963052
%endif
963052
%if %{with systemd}
963052
BuildRequires: systemd-units
963052
Requires(post): systemd
963052
Requires(preun): systemd
963052
Requires(postun): systemd
963052
%endif
963052
%if %{with xmlconf}
963052
Requires: libxslt
963052
%endif
963052
963052
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
963052
963052
%prep
963052
%setup -q -n %{name}-%{version}%{?gittarver}
d26a47
%patch0 -p1 -b .bz1136429-1
d26a47
%patch1 -p1 -b .bz1136429-2
d26a47
%patch2 -p1 -b .bz1149916-1
d26a47
%patch3 -p1 -b .bz1078361-1
d26a47
%patch4 -p1 -b .bz1078361-2
d26a47
%patch5 -p1 -b .bz1078361-3
d26a47
%patch6 -p1 -b .bz1184154-1
f36a32
%patch7 -p1 -b .bz1205336-1
f36a32
%patch8 -p1 -b .bz1205338-1
963052
963052
%build
963052
%if %{with runautogen}
963052
./autogen.sh
963052
%endif
963052
963052
%if %{with rdma}
963052
export ibverbs_CFLAGS=-I/usr/include/infiniband \
963052
export ibverbs_LIBS=-libverbs \
963052
export rdmacm_CFLAGS=-I/usr/include/rdma \
963052
export rdmacm_LIBS=-lrdmacm \
963052
%endif
963052
%{configure} \
963052
%if %{with testagents}
963052
	--enable-testagents \
963052
%endif
963052
%if %{with watchdog}
963052
	--enable-watchdog \
963052
%endif
963052
%if %{with monitoring}
963052
	--enable-monitoring \
963052
%endif
963052
%if %{with snmp}
963052
	--enable-snmp \
963052
%endif
963052
%if %{with dbus}
963052
	--enable-dbus \
963052
%endif
963052
%if %{with rdma}
963052
	--enable-rdma \
963052
%endif
963052
%if %{with systemd}
963052
	--enable-systemd \
963052
%endif
963052
%if %{with upstart}
963052
	--enable-upstart \
963052
%endif
963052
%if %{with xmlconf}
963052
	--enable-xmlconf \
963052
%endif
963052
	--with-initddir=%{_initrddir} \
963052
	--with-systemddir=%{_unitdir} \
963052
	--with-upstartdir=%{_sysconfdir}/init
963052
963052
make %{_smp_mflags}
963052
963052
%install
963052
rm -rf %{buildroot}
963052
963052
make install DESTDIR=%{buildroot}
963052
963052
%if %{with dbus}
963052
mkdir -p -m 0700 %{buildroot}/%{_sysconfdir}/dbus-1/system.d
963052
install -m 644 %{_builddir}/%{name}-%{version}%{?gittarver}/conf/corosync-signals.conf %{buildroot}/%{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
963052
%endif
963052
963052
## tree fixup
963052
# drop static libs
963052
rm -f %{buildroot}%{_libdir}/*.a
963052
rm -f %{buildroot}%{_libdir}/*.la
963052
# drop docs and html docs for now
963052
rm -rf %{buildroot}%{_docdir}/*
963052
# /etc/sysconfig/corosync-notifyd
963052
mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
963052
install -m 644 tools/corosync-notifyd.sysconfig.example \
963052
   %{buildroot}%{_sysconfdir}/sysconfig/corosync-notifyd
d26a47
# /etc/sysconfig/corosync
d26a47
install -m 644 init/corosync.sysconfig.example \
d26a47
   %{buildroot}%{_sysconfdir}/sysconfig/corosync
963052
963052
%clean
963052
rm -rf %{buildroot}
963052
963052
%description
963052
This package contains the Corosync Cluster Engine Executive, several default
963052
APIs and libraries, default configuration files, and an init script.
963052
963052
%post
963052
%if %{with systemd} && 0%{?systemd_post:1}
963052
%systemd_post corosync.service
963052
%else
963052
if [ $1 -eq 1 ]; then
963052
	/sbin/chkconfig --add corosync || :
963052
fi
963052
%endif
963052
963052
%preun
963052
%if %{with systemd} && 0%{?systemd_preun:1}
963052
%systemd_preun corosync.service
963052
%else
963052
if [ $1 -eq 0 ]; then
963052
	/sbin/service corosync stop &>/dev/null || :
963052
	/sbin/chkconfig --del corosync || :
963052
fi
963052
%endif
963052
963052
%postun
963052
%if %{with systemd} && 0%{?systemd_postun:1}
963052
%systemd_postun
963052
%endif
963052
963052
%files
963052
%defattr(-,root,root,-)
963052
%doc LICENSE SECURITY
963052
%{_sbindir}/corosync
963052
%{_sbindir}/corosync-keygen
963052
%{_sbindir}/corosync-cmapctl
963052
%{_sbindir}/corosync-cfgtool
963052
%{_sbindir}/corosync-cpgtool
963052
%{_sbindir}/corosync-quorumtool
963052
%{_sbindir}/corosync-notifyd
963052
%{_bindir}/corosync-blackbox
963052
%if %{with xmlconf}
963052
%{_bindir}/corosync-xmlproc
963052
%config(noreplace) %{_sysconfdir}/corosync/corosync.xml.example
963052
%dir %{_datadir}/corosync
963052
%{_datadir}/corosync/xml2conf.xsl
963052
%{_mandir}/man8/corosync-xmlproc.8*
963052
%{_mandir}/man5/corosync.xml.5*
963052
%endif
963052
%dir %{_sysconfdir}/corosync
963052
%dir %{_sysconfdir}/corosync/uidgid.d
963052
%config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example
963052
%config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example.udpu
963052
%config(noreplace) %{_sysconfdir}/sysconfig/corosync-notifyd
d26a47
%config(noreplace) %{_sysconfdir}/sysconfig/corosync
963052
%if %{with dbus}
963052
%{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
963052
%endif
963052
%if %{with snmp}
963052
%{_datadir}/snmp/mibs/COROSYNC-MIB.txt
963052
%endif
963052
%if %{with systemd}
963052
%{_unitdir}/corosync.service
963052
%{_unitdir}/corosync-notifyd.service
963052
%dir %{_datadir}/corosync
963052
%{_datadir}/corosync/corosync
963052
%{_datadir}/corosync/corosync-notifyd
963052
%else
963052
%{_initrddir}/corosync
963052
%{_initrddir}/corosync-notifyd
963052
%endif
963052
%if %{with upstart}
963052
%{_sysconfdir}/init/corosync.conf
963052
%{_sysconfdir}/init/corosync-notifyd.conf
963052
%endif
963052
%dir %{_localstatedir}/lib/corosync
963052
%dir %{_localstatedir}/log/cluster
963052
%{_mandir}/man8/corosync_overview.8*
963052
%{_mandir}/man8/corosync.8*
963052
%{_mandir}/man8/corosync-blackbox.8*
963052
%{_mandir}/man8/corosync-cmapctl.8*
963052
%{_mandir}/man8/corosync-keygen.8*
963052
%{_mandir}/man8/corosync-cfgtool.8*
963052
%{_mandir}/man8/corosync-cpgtool.8*
963052
%{_mandir}/man8/corosync-notifyd.8*
963052
%{_mandir}/man8/corosync-quorumtool.8*
963052
%{_mandir}/man5/corosync.conf.5*
963052
%{_mandir}/man5/votequorum.5*
963052
%{_mandir}/man8/cmap_keys.8*
963052
963052
# optional testagent rpm
963052
#
963052
%if %{with testagents}
963052
963052
%package -n corosync-testagents
963052
Summary: The Corosync Cluster Engine Test Agents
963052
Group: Development/Libraries
963052
Requires: %{name} = %{version}-%{release}
963052
Requires: libqb >= 0.14.2
963052
963052
%description -n corosync-testagents
963052
This package contains corosync test agents.
963052
963052
%files -n corosync-testagents
963052
%defattr(755,root,root,-)
963052
%{_datadir}/corosync/tests/mem_leak_test.sh
963052
%{_datadir}/corosync/tests/net_breaker.sh
963052
%{_datadir}/corosync/tests/cmap-dispatch-deadlock.sh
963052
%{_datadir}/corosync/tests/shm_leak_audit.sh
963052
%{_bindir}/cpg_test_agent
963052
%{_bindir}/sam_test_agent
963052
%{_bindir}/votequorum_test_agent
963052
963052
%endif
963052
963052
# library
963052
#
963052
%package -n corosynclib
963052
Summary: The Corosync Cluster Engine Libraries
963052
Group: System Environment/Libraries
963052
Requires: %{name} = %{version}-%{release}
963052
963052
%description -n corosynclib
963052
This package contains corosync libraries.
963052
963052
%files -n corosynclib
963052
%defattr(-,root,root,-)
963052
%doc LICENSE
963052
%{_libdir}/libcfg.so.*
963052
%{_libdir}/libcpg.so.*
963052
%{_libdir}/libcmap.so.*
963052
%{_libdir}/libtotem_pg.so.*
963052
%{_libdir}/libquorum.so.*
963052
%{_libdir}/libvotequorum.so.*
963052
%{_libdir}/libsam.so.*
963052
%{_libdir}/libcorosync_common.so.*
963052
963052
%post -n corosynclib -p /sbin/ldconfig
963052
963052
%postun -n corosynclib -p /sbin/ldconfig
963052
963052
%package -n corosynclib-devel
963052
Summary: The Corosync Cluster Engine Development Kit
963052
Group: Development/Libraries
963052
Requires: corosynclib = %{version}-%{release}
963052
Requires: pkgconfig
963052
Provides: corosync-devel = %{version}
963052
Obsoletes: corosync-devel < 0.92-7
963052
963052
%description -n corosynclib-devel
963052
This package contains include files and man pages used to develop using
963052
The Corosync Cluster Engine APIs.
963052
963052
%files -n corosynclib-devel
963052
%defattr(-,root,root,-)
963052
%doc LICENSE
963052
%dir %{_includedir}/corosync/
963052
%{_includedir}/corosync/corodefs.h
963052
%{_includedir}/corosync/cfg.h
963052
%{_includedir}/corosync/cmap.h
963052
%{_includedir}/corosync/corotypes.h
963052
%{_includedir}/corosync/cpg.h
963052
%{_includedir}/corosync/hdb.h
963052
%{_includedir}/corosync/sam.h
963052
%{_includedir}/corosync/quorum.h
963052
%{_includedir}/corosync/votequorum.h
963052
%dir %{_includedir}/corosync/totem/
963052
%{_includedir}/corosync/totem/totem.h
963052
%{_includedir}/corosync/totem/totemip.h
963052
%{_includedir}/corosync/totem/totempg.h
963052
%{_libdir}/libcfg.so
963052
%{_libdir}/libcpg.so
963052
%{_libdir}/libcmap.so
963052
%{_libdir}/libtotem_pg.so
963052
%{_libdir}/libquorum.so
963052
%{_libdir}/libvotequorum.so
963052
%{_libdir}/libsam.so
963052
%{_libdir}/libcorosync_common.so
963052
%{_libdir}/pkgconfig/*.pc
963052
%{_mandir}/man3/cpg_*3*
963052
%{_mandir}/man3/quorum_*3*
963052
%{_mandir}/man3/votequorum_*3*
963052
%{_mandir}/man3/sam_*3*
963052
%{_mandir}/man8/cpg_overview.8*
963052
%{_mandir}/man8/votequorum_overview.8*
963052
%{_mandir}/man8/sam_overview.8*
963052
%{_mandir}/man3/cmap_*3*
963052
%{_mandir}/man8/cmap_overview.8*
963052
%{_mandir}/man8/quorum_overview.8*
963052
963052
%changelog
f36a32
* Wed Mar 25 2015 Jan Friesse <jfriesse@redhat.com> 2.3.4-4.1
f36a32
- Resolves: rhbz#1205336
f36a32
- Resolves: rhbz#1205338
f36a32
f36a32
- Votequorum: Fix auto_tie_breaker default (rhbz#1205336)
f36a32
- merge upstream commit 314a01c98e5f98ff686333966dbe675935b7b6a8 (rhbz#1205336)
f36a32
- Don't allow both two_node and auto_tie_breaker in corosync.conf (rhbz#1205338)
f36a32
- merge upstream commit c832ade034fa737561ccabefbe417c9d7855d970 (rhbz#1205338)
f36a32
d26a47
* Wed Jan 21 2015 Jan Friesse <jfriesse@redhat.com> 2.3.4-4
d26a47
- Resolves: rhbz#1184154
d26a47
d26a47
- Handle adding and removing UDPU members atomically (rhbz#1184154)
d26a47
- merge upstream commit d77cec24d0025d353681762fe707794c621665c7 (rhbz#1184154)
d26a47
d26a47
* Mon Oct 13 2014 Jan Friesse <jfriesse@redhat.com> 2.3.4-3
d26a47
- Resolves: rhbz#1078361
d26a47
- Resolves: rhbz#1136429
d26a47
- Resolves: rhbz#1149916
d26a47
d26a47
- [crypto] fix crypto block rounding/padding calculation (rhbz#1136429)
d26a47
- merge upstream commit 239e2397820f9fa7ef430ebef0947ec1246eb50f (rhbz#1136429)
d26a47
- Adjust MTU for IPv6 correctly (rhbz#1136429)
d26a47
- merge upstream commit 03f95ddaa1d223e1e93788a307dc1b36d86b22b5 (rhbz#1136429)
d26a47
- init: Don't wait for ipc if corosync doesn't start (rhbz#1149916)
d26a47
- merge upstream commit b627844f3d5c5788bd8bb140d8852ba666da16aa (rhbz#1149916)
d26a47
- manpage: Fix English (rhbz#1078361)
d26a47
- merge upstream commit f77a61ac1795e794244440e1bfe804f02cc5d2b6 (rhbz#1078361)
d26a47
- Store configuration values used by totem to cmap (rhbz#1078361)
d26a47
- merge upstream commit bb52fc2774ef690d6bb951fe9cc34e5b373caffe (rhbz#1078361)
d26a47
- man page: Improve description of token timeout (rhbz#1078361)
d26a47
- merge upstream commit 57539d1abc09e5aef322cb9cca5b3e6c496cfae9 (rhbz#1078361)
d26a47
d26a47
* Fri Sep 12 2014 Fabio M. Di Nitto <fdinitto@redhat.com> 2.3.4-2
d26a47
- Resolves: rhbz#1140915
d26a47
d26a47
* Tue Aug 26 2014 Jan Friesse <jfriesse@redhat.com> 2.3.4-1
d26a47
- Resolves: rhbz#1108522
d26a47
d26a47
* Tue Aug 26 2014 Jan Friesse <jfriesse@redhat.com> 2.3.3-3
d26a47
- Resolves: rhbz#1059607
d26a47
- Resolves: rhbz#1069254
d26a47
- Resolves: rhbz#1074673
d26a47
- Resolves: rhbz#1078361
d26a47
- Resolves: rhbz#1078363
d26a47
- Resolves: rhbz#1085468
d26a47
- Resolves: rhbz#1086233
d26a47
- Resolves: rhbz#1108508
d26a47
- Resolves: rhbz#1108511
d26a47
- Resolves: rhbz#1108522
d26a47
- Resolves: rhbz#1108525
d26a47
- Resolves: rhbz#1108708
d26a47
- Resolves: rhbz#1117911
d26a47
d26a47
- Free object allocated at quorum_register_callback (rhbz#1059607)
d26a47
- merge upstream commit fa71067a93ea99d8dc4812e3a028ae154216a91a (rhbz#1059607)
d26a47
- votequorum: Add extended options to auto_tie_breaker (rhbz#1059607)
d26a47
- merge upstream commit 90d448af3b4b4508ca890cce67113cb226475d3b (rhbz#1059607)
d26a47
- totemsrp: Fix typo with cont gather (rhbz#1108508)
d26a47
- merge upstream commit 38c04d9a66ba41dae14a57eba119dabb31cbb18f (rhbz#1108508)
d26a47
- mon: Make mon compilable with libstatgrab ver 0.9 (rhbz#1108511)
d26a47
- merge upstream commit e1e2390b61fb5d47a8639f2538721675dd411b08 (rhbz#1108511)
d26a47
- mon: Fix comparsion typo (rhbz#1108511)
d26a47
- merge upstream commit 57ff693b70cb7aaa81e52e9d24f38aa0399a8c46 (rhbz#1108511)
d26a47
- mon: Pass correct pointer to inst (rhbz#1108511)
d26a47
- merge upstream commit 099f704cdddfb3b72fe93fb1f4fc777672eb9fdf (rhbz#1108511)
d26a47
- mon: Make monitoring work (rhbz#1108511)
d26a47
- merge upstream commit ff67daa55f6cfcb48357a8fddaa312b9fb49602b (rhbz#1108511)
d26a47
- votequorum: Properly initialize atb and atb_string (rhbz#1059607)
d26a47
- merge upstream commit e1801ba49738a3ae2ba3ca08c2b74dda5ff9056c (rhbz#1059607)
d26a47
- config: Handle totem_set_volatile_defaults errors (rhbz#1078361)
d26a47
- merge upstream commit 2f0cad20a9a368683fd59a869b2cb360bd31f95b (rhbz#1078361)
d26a47
- Log: Make reload of logging work (rhbz#1078361)
d26a47
- merge upstream commit 1b6abcc7d5afd4651efcdba1a65effb259f6ee3e (rhbz#1078361)
d26a47
- Really clear totemconfig nodes on reload (rhbz#1078361)
d26a47
- merge upstream commit eeb2384157351ff460be0648d954e5e97213d532 (rhbz#1078361)
d26a47
- totemconfig: Key change process dependencies (rhbz#1078361)
d26a47
- merge upstream commit b95ebd640eb45267d69822c8292a0098a8e4180e (rhbz#1078361)
d26a47
- totemconfig: Log errors on key change and reload (rhbz#1078361)
d26a47
- merge upstream commit 9a8de87c34071f54a9e3b545a1a7460d64568579 (rhbz#1078361)
d26a47
- Add token_coefficient option (rhbz#1078361)
d26a47
- merge upstream commit 58176d6779a0f5ff23dabf61dff7544db29af25a (rhbz#1078361)
d26a47
- init: Make init script configurable (rhbz#1078363)
d26a47
- merge upstream commit 1f7e78ab9cc686a7528ac4601651ded9d204b01f (rhbz#1078363)
d26a47
- config: Allow dynamic change of token_coefficient (rhbz#1078361)
d26a47
- merge upstream commit 7557fdec487cb5fad7c449949ba58496bd396458 (rhbz#1078361)
d26a47
- upstart: Make job conf file configurable (rhbz#1108522)
d26a47
- merge upstream commit d23ee6a3e0d5299f488bf9abed98f1853fd0e8b0 (rhbz#1108522)
d26a47
- Indent: Remove space in negation of expression (rhbz#1108522)
d26a47
- merge upstream commit b6e2c8024dd314ce17eac4f3f83a2320ebb7017d (rhbz#1108522)
d26a47
- Indent: Remove newline before else branch start (rhbz#1108522)
d26a47
- merge upstream commit d0dc9ae93c6f41ab9139242d754428fcf9bcc653 (rhbz#1108522)
d26a47
- totemiba: Add multicast recovery (rhbz#1108522)
d26a47
- merge upstream commit 4d6a18d8a5c0001f2eaeebb79d75f999c671cb74 (rhbz#1108522)
d26a47
- totemiba: Fix incorrect failed log message (rhbz#1108522)
d26a47
- merge upstream commit e905f92bf532c291d9be23b6a16d972f36d5d464 (rhbz#1108522)
d26a47
- logsys: Log error if blackbox cannot be created (rhbz#1108525)
d26a47
- merge upstream commit 19c5b63ff5fae43c2acf28ce95cca6460f500176 (rhbz#1108525)
d26a47
- logsys: Log warning if flightrecorder init fails (rhbz#1108525)
d26a47
- merge upstream commit 8f13a983204c2bc16c7490cee6db90138ecc43f1 (rhbz#1108525)
d26a47
- Introduce get_run_dir function (rhbz#1108525)
d26a47
- merge upstream commit d310b251c3ba5e92c7ca1b8f6f8197d71141a8d6 (rhbz#1108525)
d26a47
- Move ringid store and load from totem library (rhbz#1108525)
d26a47
- merge upstream commit da46ecfc3087de97ad9a76fe6a156f10170503a2 (rhbz#1108525)
d26a47
- init: change return value when starting corosync (rhbz#1078363)
d26a47
- merge upstream commit 7a6cc6b5a2f6ec5d88e52e34e62f18db1915afd7 (rhbz#1078363)
d26a47
- Install doc: Correct a typo (rhbz#1108522)
d26a47
- merge upstream commit a64696698718071e4e531a5a3332c363742c550b (rhbz#1108522)
d26a47
- coroparse: More strict numbers parsing (rhbz#1108708)
d26a47
- merge upstream commit 4e9716ed30ffe6a5750f5c6c2565815e88413c23 (rhbz#1108708)
d26a47
- Doc: Enhance INSTALL file a bit (rhbz#1108522)
d26a47
- merge upstream commit e8a5c56ab27fff4beef910804841d73aaa17a6a1 (rhbz#1108522)
d26a47
- Make config.reload_in_progress key read only (rhbz#1085468)
d26a47
- merge upstream commit c8e3f14fdb284aadf023d7e62c0f951181f21736 (rhbz#1085468)
d26a47
- votequorum: Do not process events during reload (rhbz#1085468)
d26a47
- merge upstream commit 72cf15af27ea9dbf918839ac44929ed9c65eea5e (rhbz#1085468)
d26a47
- systemd: Config example for corosync wd service (rhbz#1108522)
d26a47
- merge upstream commit f6d6a9b0a0ca99a201bb9e9353a05075b700bcbd (rhbz#1108522)
d26a47
- fix memory leak produced by 'corosync -v' (rhbz#1117911)
d26a47
- merge upstream commit cc80c8567d6eec1d136f9e85d2f8dfb957337eef (rhbz#1117911)
d26a47
- Handle SIGSEGV and SIGABRT signals (rhbz#1117911)
d26a47
- merge upstream commit 384760cb670836dc37e243f594612c6e68f44351 (rhbz#1117911)
d26a47
- Fix compiler warning introduced by previous patch (rhbz#1117911)
d26a47
- merge upstream commit dfaca4b10a005681230a81e229384b6cd239b4f6 (rhbz#1117911)
d26a47
- corosync-cmapctl: Allow -p option to delete keys (rhbz#1108522)
d26a47
- merge upstream commit 7a4bb37723777bf6bcd08035696d8d7317c0ce1d (rhbz#1108522)
d26a47
- Implement config file testing mode (rhbz#1108522)
d26a47
- merge upstream commit e3ffd4fedc8158cdb5057f9fe40b6459e3d85846 (rhbz#1108522)
d26a47
- cleanup after test-driver (rhbz#1108522)
d26a47
- merge upstream commit c7ebb09530349b7b1bbec7b1d9ef4b05ad186a63 (rhbz#1108522)
d26a47
- be consistent in using CPPFLAGS vs CFLAGS (rhbz#1108522)
d26a47
- merge upstream commit 84b9e5989aa4a7090aeccbeb6cb8910735274a65 (rhbz#1108522)
d26a47
- Slightly rework corosync-keygen. (rhbz#1108522)
d26a47
- merge upstream commit 520fe686c5e45f0f7143e749a3f6c2001a2ea0d7 (rhbz#1108522)
d26a47
- totemconfig: Free ifaddrs list (rhbz#1108522)
d26a47
- merge upstream commit dc35bfae6213256fd7f0d5bf4dd9d5fa0f77a6f6 (rhbz#1108522)
d26a47
- totemconfig: totem_config_get_ip_version (rhbz#1108522)
d26a47
- merge upstream commit 10c80f454e70b42fc394d3326af1eb81c4be0d75 (rhbz#1108522)
d26a47
- totemconfig: refactor nodelist_to_interface func (rhbz#1108522)
d26a47
- merge upstream commit 63bf09776fb84e939cd56ec2c2d1bbea97c2e0e1 (rhbz#1108522)
d26a47
- corosync-keygen: Replace printf/exit call with err (rhbz#1108522)
d26a47
- merge upstream commit 0ce8d51c6d989c4e62d8c1f3fc42785c4f3d250c (rhbz#1108522)
d26a47
- config: Fix typos (rhbz#1108522)
d26a47
- merge upstream commit 3b8365e80668eea55bdd3f7178693c82884331ae (rhbz#1108522)
d26a47
- totemconfig: Make sure join timeout is less than consensus (rhbz#1074673)
d26a47
- merge upstream commit 88dbb9f722122f04dc7c95681375a53a3a1301a5 (rhbz#1074673)
d26a47
- votequorum: Return current ring id in callback (rhbz#1108522)
d26a47
- merge upstream commit 5f6f68805c48f8f72f66f7fff9abc44b4c65df1e (rhbz#1108522)
d26a47
- votequorum: Add ring id to poll call (rhbz#1108522)
d26a47
- merge upstream commit b8902464d1b040326108ce7ec0934c1de5fe04ee (rhbz#1108522)
d26a47
- ipc: Process votequorum messages during sync (rhbz#1108522)
d26a47
- merge upstream commit 7cad804629fe7d936d098569122f84979959b554 (rhbz#1108522)
d26a47
- votequorum: Block sync until qdevice poll (rhbz#1108522)
d26a47
- merge upstream commit b4c99346352ce39cf96f7b12943811c896b89caa (rhbz#1108522)
d26a47
- testvotequorum2: Opt for polling with old ringid (rhbz#1108522)
d26a47
- merge upstream commit f8413350b2df4e37822e6d34e9337da87993d271 (rhbz#1108522)
d26a47
- votequorum: Make qdev timeout in sync configurable (rhbz#1108522)
d26a47
- merge upstream commit 17488909d4ae0dc948eb9a4a15133570faaf9c0b (rhbz#1108522)
d26a47
- Cancel token holding while in retransmition (rhbz#1108522)
d26a47
- merge upstream commit f135b680967aaef1d466f40170c75ae3e470e147 (rhbz#1108522)
d26a47
- votequorum: Add cmap key to reset wait_for_all (rhbz#1086233)
d26a47
- merge upstream commit cbf753405b7924e48aa1838cc1d14044229449b3 (rhbz#1086233)
d26a47
- quorumtool: Sort output by nodeid (rhbz#1108522)
d26a47
- merge upstream commit ddb017fa0e2026ee4f0d05e9bf780898c32c129a (rhbz#1108522)
d26a47
- YKD: Fix loading of YKD quorum module (rhbz#1108522)
d26a47
- merge upstream commit 02f58aec9cd53887aa1dfe1616fcbb32671987d4 (rhbz#1108522)
d26a47
- corosync-quorumtool: add sort options (rhbz#1108522)
d26a47
- merge upstream commit f53580c2c1c8fa621cbc18de81974811799bafd8 (rhbz#1108522)
d26a47
- TODO: Remove TODO file (rhbz#1108522)
d26a47
- merge upstream commit c9232d5d6cbfb1e4de9eb09afadda630ad4fee83 (rhbz#1108522)
d26a47
- Makefile: Do not install TODO file (rhbz#1108522)
d26a47
- merge upstream commit 4b7293da7a03253a7f96401642e1afb006e7750c (rhbz#1108522)
d26a47
- totem: Inform RRP about membership changes (rhbz#1069254)
d26a47
- merge upstream commit acb55cdb03808a4cea745b1b6a80c7ef1769880f (rhbz#1069254)
d26a47
- totemnet: Add totemnet_member_set_active (rhbz#1069254)
d26a47
- merge upstream commit 4c717942cf5f35902be630f393b81a03a81bb194 (rhbz#1069254)
d26a47
- totemrrp: Implement *_membership_changed (rhbz#1069254)
d26a47
- merge upstream commit 371a99e96147f600510bd9d819b92a4de94fcc30 (rhbz#1069254)
d26a47
- totemudpu: Implement member_set_active (rhbz#1069254)
d26a47
- merge upstream commit 71f1b99649329ab06309791d0a621d3cfbb74bdb (rhbz#1069254)
d26a47
- totemudpu: Send msgs to all members occasionally (rhbz#1069254)
d26a47
- merge upstream commit 2429481b96d895c366ca27c82a2bd7cfee55af15 (rhbz#1069254)
2c8186
cf1c78
* Thu Feb 20 2014 Jan Friesse <jfriesse@redhat.com> 2.3.3-2
cf1c78
- Resolves: rhbz#1067028
cf1c78
cf1c78
- cpg: Refactor mh_req_exec_cpg_procleave (rhbz#1067028)
cf1c78
- merge upstream commit fcf26e03036b6ae5a8ef762ea0b5691a4f790c92 (rhbz#1067028)
cf1c78
- cpg: Make sure nodid is always logged as hex num (rhbz#1067028)
cf1c78
- merge upstream commit 83c63b247f4030fe8123df7c9f96d7a1c8e245b1 (rhbz#1067028)
cf1c78
- cpg: Make sure left nodes are really removed (rhbz#1067028)
cf1c78
- merge upstream commit fbe8768f1bbab6d546023d70e7f7b91a9dc213b0 (rhbz#1067028)
cf1c78
cf1c78
* Tue Jan 14 2014 Jan Friesse <jfriesse@redhat.com> - 2.3.3-1
cf1c78
- Resolves: rhbz#1030559
cf1c78
- Resolves: rhbz#1038652
cf1c78
- Resolves: rhbz#1052049
cf1c78
cf1c78
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.3.2-4
cf1c78
- Mass rebuild 2013-12-27
cf1c78
cf1c78
* Wed Dec 04 2013 Jan Friesse <jfriesse@redhat.com> 2.3.2-3
cf1c78
- Resolves: rhbz#1031832
cf1c78
cf1c78
- cfgtool: return error on reload failure (rhbz#1031832)
cf1c78
- merge upstream commit 7014f10123a634cf026491edc9a09d6044106116 (rhbz#1031832)
cf1c78
963052
* Thu Nov 7 2013 Jan Friesse <jfriesse@redhat.com> 2.3.2-2
963052
- Resolves: rhbz#1008561
963052
963052
- Drop support for IBA (rhbz#1008561)
963052
963052
* Mon Sep 16 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.2-1
963052
- Resolves: rhbz#998882
963052
963052
- New upstream release
963052
963052
* Mon Aug 19 2013 Jan Friesse <jfriesse@redhat.com> 2.3.1-3
963052
- Resolves: rhbz#998362
963052
963052
- Fix scheduler pause-detection timeout (rhbz#998362)
963052
- merge upstream commit 2740cfd1eac60714601c74df2137fe588b607866 (rhbz#998362)
963052
963052
* Wed Jul 17 2013 Andrew Beekhof <abeekhof@redhat.com> - 2.3.1-2
963052
- Rebuild for snmp library bump
963052
963052
* Wed Jul 10 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.1-1
963052
- New upstream release
963052
- Fix incorrect dates in specfile changelog section
963052
963052
* Mon Mar 25 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.0-3
963052
- Resolves: rhbz#925185
963052
963052
- Run autogen by default
963052
963052
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-2
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
963052
963052
* Fri Jan 18 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.0-1
963052
- New upstream release
963052
963052
* Wed Dec 12 2012 Jan Friesse <jfriesse@redhat.com> - 2.2.0-1
963052
- New upstream release
963052
963052
* Thu Oct 11 2012 Jan Friesse <jfriesse@redhat.com> - 2.1.0-1
963052
- New upstream release
963052
963052
* Fri Aug 3 2012 Steven Dake <sdake@redhat.com> - 2.0.1-3
963052
- add groff as a BuildRequires as it is no longer installed in the buildroot
963052
963052
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-2
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
963052
963052
* Tue May 22 2012 Jan Friesse <jfriesse@redhat.com> - 2.0.1-1
963052
- New upstream release
963052
963052
* Tue Apr 17 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 2.0.0-2
963052
- Backport IPCS fix from master (ack by Steven)
963052
963052
* Tue Apr 10 2012 Jan Friesse <jfriesse@redhat.com> - 2.0.0-1
963052
- New upstream release
963052
963052
* Thu Apr 05 2012 Karsten Hopp <karsten@redhat.com> 1.99.9-1.1
963052
- bump release and rebuild on PPC
963052
963052
* Tue Mar 27 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.9-1
963052
- New upstream release
963052
963052
* Fri Mar 16 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.8-1
963052
- New upstream release
963052
963052
* Tue Mar  6 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.7-1
963052
- New upstream release
963052
963052
* Tue Feb 28 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.6-1
963052
- New upstream release
963052
963052
* Wed Feb 22 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.5-1
963052
- New upstream release
963052
963052
* Tue Feb 14 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.4-1
963052
- New upstream release
963052
963052
* Tue Feb 14 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.3-1
963052
- New upstream release
963052
963052
* Tue Feb  7 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.2-1
963052
- New upstream release
963052
- Re-enable xmlconfig bits
963052
- Ship cmap man pages
963052
- Add workaround to usrmove breakage!!
963052
963052
* Thu Feb  2 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.1-2
963052
- Add proper Obsoltes on openais/cman/clusterlib
963052
963052
* Wed Feb  1 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.1-1
963052
- New upstream release
963052
- Temporary disable xml config (broken upstream tarball)
963052
963052
* Tue Jan 24 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.0-1
963052
- New upstream release
963052
963052
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-2
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
963052
963052
* Thu Oct 06 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.2-1
963052
- New upstream release
963052
963052
* Thu Sep 08 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.1-2
963052
- Add upstream fixes
963052
963052
* Tue Jul 26 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.1-1
963052
- New upstream release
963052
963052
* Wed Jul 20 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.0-2
963052
- Change attributes of cluster log directory
963052
963052
* Tue Jul 19 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.0-1
963052
- New upstream release
963052
- Resync spec file with upstream changes
963052
963052
* Fri Jul 08 2011 Jan Friesse <jfriesse@redhat.com> - 1.3.2-1
963052
- New upstream release
963052
963052
* Tue May 10 2011 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.3.1-1
963052
- New upstream release
963052
963052
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
963052
963052
* Thu Dec  2 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.3.0-1
963052
- New upstream release
963052
- drop upstream patch revision-2770.patch now included in release
963052
- update spec file to ship corosync-blackbox
963052
963052
* Thu Sep  2 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.8-1
963052
- New upstream release
963052
963052
* Thu Jul 29 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.7-1
963052
- New upstream release
963052
963052
* Fri Jul  9 2010 Dan Horák <dan[at]danny.cz> - 1.2.6-2
963052
- no InfiniBand stack on s390(x)
963052
963052
* Mon Jul  5 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.6-1
963052
- New upstream release
963052
- Resync spec file with upstream changes
963052
963052
* Tue May 25 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.3-1
963052
- New upstream release
963052
- Rediff revision 2770 patch
963052
963052
* Mon May 17 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.2-1
963052
- New upstream release
963052
- Add upstream trunk revision 2770 to add cpg_model_initialize api.
963052
- Fix URL and Source0 entries.
963052
- Add workaround to broken 1.2.2 Makefile with make -j.
963052
963052
* Wed Mar 24 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.1-1
963052
- New upstream release
963052
963052
* Tue Dec  8 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.0-1
963052
- New upstream release
963052
- Use global instead of define
963052
- Update Source0 url
963052
- Use more name macro around
963052
- Cleanup install section. Init script is now installed by upstream
963052
- Cleanup whitespace
963052
- Don't deadlock between package upgrade and corosync condrestart
963052
- Ship service.d config directory
963052
- Fix Conflicts vs Requires
963052
- Ship new sam library and man pages
963052
963052
* Fri Oct 23 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.2-1
963052
- New upstream release fixes major regression on specific loads
963052
963052
* Wed Oct 21 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.1-1
963052
- New upstream release
963052
963052
* Fri Sep 25 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.0-1
963052
- New upstream release
963052
- spec file updates:
963052
  * enable IB support
963052
  * explicitly define built-in features at configure time
963052
963052
* Tue Sep 22 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.1-1
963052
- New upstream release
963052
- spec file updates:
963052
  * use proper configure macro
963052
963052
* Tue Jul 28 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.0-3
963052
- spec file updates:
963052
  * more consistent use of macros across the board
963052
  * fix directory ownership
963052
963052
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-2
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
963052
963052
* Wed Jul  8 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.0-1
963052
- New upstream release
963052
963052
* Thu Jul  2 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.100-1
963052
- New upstream release
963052
963052
* Sat Jun 20 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.98-1
963052
- New upstream release
963052
- spec file updates:
963052
  * Drop corosync-trunk patch and alpha tag.
963052
  * Fix alphatag vs buildtrunk handling.
963052
  * Drop requirement on ais user/group and stop creating them.
963052
  * New config file locations from upstream: /etc/corosync/corosync.conf.
963052
963052
* Wed Jun 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.97-1.svn2233
963052
- spec file updates:
963052
  * Update to svn version 2233 to include library linking fixes
963052
963052
* Wed Jun 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.97-1.svn2232
963052
- New upstream release
963052
- spec file updates:
963052
  * Drop pkgconfig fix that's now upstream
963052
  * Update to svn version 2232
963052
  * Define buildtrunk if we are using svn snapshots
963052
  * BuildRequires: nss-devel to enable nss crypto for network communication
963052
  * Force autogen invokation if buildtrunk is defined
963052
  * Whitespace cleanup
963052
  * Stop shipping corosync.conf in favour of a generic example
963052
  * Update file list
963052
963052
* Mon Mar 30 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.95-2
963052
- Backport svn commit 1913 to fix pkgconfig files generation
963052
  and unbreak lvm2 build.
963052
963052
* Tue Mar 24 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.95-1
963052
- New upstream release
963052
- spec file updates:
963052
  * Drop alpha tag
963052
  * Drop local patches (no longer required)
963052
  * Allow to build from svn trunk by supporting rpmbuild --with buildtrunk 
963052
  * BuildRequires autoconf automake if building from trunk
963052
  * Execute autogen.sh if building from trunk and if no configure is available
963052
  * Switch to use rpm configure macro and set standard install paths
963052
  * Build invokation now supports _smp_mflags
963052
  * Remove install section for docs and use proper doc macro instead
963052
  * Add tree fixup bits to drop static libs and html docs (only for now)
963052
  * Add LICENSE file to all subpackages
963052
  * libraries have moved to libdir. Drop ld.so.conf.d corosync file
963052
  * Update BuildRoot usage to preferred versions/names
963052
963052
* Tue Mar 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-5.svn1797
963052
- Update the corosync-trunk patch for real this time.
963052
963052
* Tue Mar 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-4.svn1797
963052
- Import fixes from upstream:
963052
  * Cleanup logsys format init around to use default settings (1795)
963052
  * logsys_format_set should use its own internal copy of format_buffer (1796)
963052
  * Add logsys_format_get to logsys API (1797)
963052
- Cherry pick svn1807 to unbreak CPG.
963052
963052
* Mon Mar  9 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-3.svn1794
963052
- Import fixes from upstream:
963052
  * Add reserve/release feature to totem message queue space (1793)
963052
  * Fix CG shutdown (1794)
963052
963052
* Fri Mar  6 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-2.svn1792
963052
- Import fixes from upstream:
963052
  * Fix uninitialized memory. Spotted by valgrind (1788)
963052
  * Fix logsys_set_format by updating the right bits (1789)
963052
  * logsys: re-add support for timestamp  (1790)
963052
  * Fix cpg crash (1791)
963052
  * Allow logsys_format_set to reset to default (1792)
963052
963052
* Tue Mar  3 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-1
963052
- New upstream release.
963052
- Drop obsolete patches.
963052
- Add soname bump patch that was missing from upstream.
963052
963052
* Wed Feb 25 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-4
963052
- Add Makefile fix to install all corosync tools (commit r1780)
963052
963052
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.93-3
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
963052
963052
* Mon Feb 23 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-2
963052
- Rename gcc-4.4 patch to match svn commit (r1767).
963052
- Backport patch from trunk (commit r1774) to fix quorum engine.
963052
963052
* Thu Feb 19 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-1
963052
- New upstream release.
963052
- Drop alphatag from spec file.
963052
- Drop trunk patch.
963052
- Update Provides for corosynclib-devel.
963052
- Backport gcc-4.4 build fix from trunk.
963052
963052
* Mon Feb  2 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-7.svn1756
963052
- Update to svn trunk at revision 1756 from upstream.
963052
- Add support pkgconfig to devel package.
963052
- Tidy up spec files by re-organazing sections according to packages.
963052
- Split libraries from corosync to corosynclib.
963052
- Rename corosync-devel to corosynclib-devel.
963052
- Comply with multiarch requirements (libraries).
963052
963052
* Tue Jan 27 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-6.svn1750
963052
- Update to svn trunk at revision 1750 from upstream.
963052
- Include new quorum service in the packaging.
963052
963052
* Mon Dec 15 2008 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-5.svn1709
963052
- Update to svn trunk at revision 1709 from upstream.
963052
- Update spec file to include new include files.
963052
963052
* Wed Dec 10 2008 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-4.svn1707
963052
- Update to svn trunk at revision 1707 from upstream.
963052
- Update spec file to include new lcrso services and include file.
963052
963052
* Mon Oct 13 2008 Dennis Gilmore <dennis@ausil.us> - 0.92-3
963052
- remove ExclusiveArch line
963052
963052
* Wed Sep 24 2008 Steven Dake <sdake@redhat.com> - 0.92-2
963052
- Add conflicts for openais and openais-devel packages older then 0.90.
963052
963052
* Wed Sep 24 2008 Steven Dake <sdake@redhat.com> - 0.92-1
963052
- New upstream release corosync-0.92.
963052
963052
* Sun Aug 24 2008 Steven Dake <sdake@redhat.com> - 0.91-3
963052
- move logsys_overview.8.* to devel package.
963052
- move shared libs to main package.
963052
963052
* Wed Aug 20 2008 Steven Dake <sdake@redhat.com> - 0.91-2
963052
- use /sbin/service instead of calling init script directly.
963052
- put corosync-objctl man page in the main package.
963052
- change all initrddir to initddir for fedora 10 guidelines.
963052
963052
* Thu Aug 14 2008 Steven Dake <sdake@redhat.com> - 0.91-1
963052
- First upstream packaged version of corosync for rawhide review.