0794c7
# Conditionals
0794c7
# Invoke "rpmbuild --without <feature>" or "rpmbuild --with <feature>"
0794c7
# to disable or enable specific features
0794c7
%bcond_with watchdog
0794c7
%bcond_with monitoring
0794c7
%bcond_without snmp
0794c7
%bcond_without dbus
0794c7
%bcond_without systemd
0794c7
%bcond_without xmlconf
848391
%bcond_without nozzle
848391
%bcond_without vqsim
0794c7
%bcond_without runautogen
848391
%bcond_without userflags
848391
%bcond_without spausedd
0794c7
0794c7
%global gitver %{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}
0794c7
%global gittarver %{?numcomm:.%{numcomm}}%{?alphatag:-%{alphatag}}%{?dirty:-%{dirty}}
0794c7
848391
%if %{with spausedd}
4a781e
%global spausedd_version 20201112
848391
%endif
848391
0794c7
Name: corosync
0794c7
Summary: The Corosync Cluster Engine and Application Programming Interfaces
0a07e1
Version: 3.1.7
0a07e1
Release: 1%{?gitver}%{?dist}
0794c7
License: BSD
0794c7
URL: http://corosync.github.io/corosync/
0794c7
Source0: http://build.clusterlabs.org/corosync/releases/%{name}-%{version}%{?gittarver}.tar.gz
3e6e59
848391
%if %{with spausedd}
848391
Source1: https://github.com/jfriesse/spausedd/releases/download/%{spausedd_version}/spausedd-%{spausedd_version}.tar.gz
848391
# VMGuestLib exists only for x86_64 architecture
848391
%ifarch x86_64
848391
%global use_vmguestlib 1
848391
%endif
848391
%endif
0794c7
0794c7
# Runtime bits
0794c7
# The automatic dependency overridden in favor of explicit version lock
0794c7
Requires: corosynclib%{?_isa} = %{version}-%{release}
0794c7
4a781e
# Support crypto reload
4a781e
Requires: libknet1 >= 1.18
0794c7
# NSS crypto plugin should be always installed
4a781e
Requires: libknet1-crypto-nss-plugin >= 1.18
0794c7
0794c7
# Build bits
0794c7
BuildRequires: gcc
0794c7
BuildRequires: groff
0794c7
BuildRequires: libqb-devel
4a781e
BuildRequires: libknet1-devel >= 1.18
0794c7
BuildRequires: zlib-devel
0794c7
%if %{with runautogen}
0794c7
BuildRequires: autoconf automake libtool
0794c7
%endif
0794c7
%if %{with monitoring}
0794c7
BuildRequires: libstatgrab-devel
0794c7
%endif
0794c7
%if %{with snmp}
0794c7
BuildRequires: net-snmp-devel
0794c7
%endif
0794c7
%if %{with dbus}
0794c7
BuildRequires: dbus-devel
0794c7
%endif
848391
%if %{with nozzle}
848391
BuildRequires: libnozzle1-devel
848391
%endif
0794c7
%if %{with systemd}
0794c7
%{?systemd_requires}
0794c7
BuildRequires: systemd
0794c7
BuildRequires: systemd-devel
0794c7
%else
0794c7
Requires(post): /sbin/chkconfig
0794c7
Requires(preun): /sbin/chkconfig
0794c7
%endif
0794c7
%if %{with xmlconf}
0794c7
Requires: libxslt
0794c7
%endif
848391
%if %{with vqsim}
848391
BuildRequires: readline-devel
848391
%endif
848391
%if %{defined use_vmguestlib}
848391
BuildRequires: pkgconfig(vmguestlib)
848391
%endif
0794c7
0794c7
%prep
848391
%if %{with spausedd}
848391
%setup -q -a 1 -n %{name}-%{version}%{?gittarver}
848391
%else
0794c7
%setup -q -n %{name}-%{version}%{?gittarver}
848391
%endif
0794c7
0794c7
%build
0794c7
%if %{with runautogen}
0794c7
./autogen.sh
0794c7
%endif
0794c7
0794c7
%{configure} \
0794c7
%if %{with watchdog}
0794c7
	--enable-watchdog \
0794c7
%endif
0794c7
%if %{with monitoring}
0794c7
	--enable-monitoring \
0794c7
%endif
0794c7
%if %{with snmp}
0794c7
	--enable-snmp \
0794c7
%endif
0794c7
%if %{with dbus}
0794c7
	--enable-dbus \
0794c7
%endif
0794c7
%if %{with systemd}
0794c7
	--enable-systemd \
0794c7
%endif
0794c7
%if %{with xmlconf}
0794c7
	--enable-xmlconf \
0794c7
%endif
848391
%if %{with nozzle}
848391
	--enable-nozzle \
848391
%endif
848391
%if %{with vqsim}
848391
	--enable-vqsim \
848391
%endif
848391
%if %{with userflags}
848391
	--enable-user-flags \
848391
%endif
0794c7
	--with-initddir=%{_initrddir} \
0794c7
	--with-systemddir=%{_unitdir} \
0794c7
	--docdir=%{_docdir}
0794c7
0794c7
make %{_smp_mflags}
0794c7
848391
%if %{with spausedd}
848391
cd spausedd-%{spausedd_version}
848391
CFLAGS="${CFLAGS:-%{optflags}}" ; export CFLAGS
848391
make \
848391
%if %{defined use_vmguestlib}
848391
    WITH_VMGUESTLIB=1 \
848391
%else
848391
    WITH_VMGUESTLIB=0 \
848391
%endif
848391
    %{?_smp_mflags}
848391
%endif
848391
0794c7
%install
0794c7
make install DESTDIR=%{buildroot}
0794c7
0794c7
%if %{with dbus}
0794c7
mkdir -p -m 0700 %{buildroot}/%{_sysconfdir}/dbus-1/system.d
0794c7
install -m 644 %{_builddir}/%{name}-%{version}%{?gittarver}/conf/corosync-signals.conf %{buildroot}/%{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
0794c7
%endif
0794c7
0794c7
## tree fixup
0794c7
# drop static libs
0794c7
rm -f %{buildroot}%{_libdir}/*.a
0794c7
rm -f %{buildroot}%{_libdir}/*.la
0794c7
# drop docs and html docs for now
0794c7
rm -rf %{buildroot}%{_docdir}/*
0794c7
# /etc/sysconfig/corosync-notifyd
0794c7
mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
0794c7
install -m 644 tools/corosync-notifyd.sysconfig.example \
0794c7
   %{buildroot}%{_sysconfdir}/sysconfig/corosync-notifyd
0794c7
# /etc/sysconfig/corosync
0794c7
install -m 644 init/corosync.sysconfig.example \
0794c7
   %{buildroot}%{_sysconfdir}/sysconfig/corosync
0794c7
848391
%if %{with spausedd}
848391
cd spausedd-%{spausedd_version}
848391
make DESTDIR="%{buildroot}" PREFIX="%{_prefix}" install
848391
848391
%if %{with systemd}
848391
mkdir -p %{buildroot}/%{_unitdir}
848391
install -m 644 -p init/spausedd.service %{buildroot}/%{_unitdir}
848391
%else
848391
mkdir -p %{buildroot}/%{_initrddir}
848391
install -m 755 -p init/spausedd %{buildroot}/%{_initrddir}
848391
%endif
848391
848391
cd ..
848391
%endif
848391
0794c7
%description
0794c7
This package contains the Corosync Cluster Engine Executive, several default
0794c7
APIs and libraries, default configuration files, and an init script.
0794c7
0794c7
%post
0794c7
%if %{with systemd} && 0%{?systemd_post:1}
0794c7
%systemd_post corosync.service
0794c7
%else
0794c7
if [ $1 -eq 1 ]; then
0794c7
	/sbin/chkconfig --add corosync || :
0794c7
fi
0794c7
%endif
0794c7
0794c7
%preun
0794c7
%if %{with systemd} && 0%{?systemd_preun:1}
0794c7
%systemd_preun corosync.service
0794c7
%else
0794c7
if [ $1 -eq 0 ]; then
0794c7
	/sbin/service corosync stop &>/dev/null || :
0794c7
	/sbin/chkconfig --del corosync || :
0794c7
fi
0794c7
%endif
0794c7
0794c7
%postun
0794c7
%if %{with systemd} && 0%{?systemd_postun:1}
0794c7
%systemd_postun corosync.service
0794c7
%endif
0794c7
0794c7
%files
0794c7
%doc LICENSE
0794c7
%{_sbindir}/corosync
0794c7
%{_sbindir}/corosync-keygen
0794c7
%{_sbindir}/corosync-cmapctl
0794c7
%{_sbindir}/corosync-cfgtool
0794c7
%{_sbindir}/corosync-cpgtool
0794c7
%{_sbindir}/corosync-quorumtool
0794c7
%{_sbindir}/corosync-notifyd
0794c7
%{_bindir}/corosync-blackbox
0794c7
%if %{with xmlconf}
0794c7
%{_bindir}/corosync-xmlproc
0794c7
%dir %{_datadir}/corosync
0794c7
%{_datadir}/corosync/xml2conf.xsl
0794c7
%{_mandir}/man8/corosync-xmlproc.8*
0794c7
%{_mandir}/man5/corosync.xml.5*
0794c7
%endif
0794c7
%dir %{_sysconfdir}/corosync
0794c7
%dir %{_sysconfdir}/corosync/uidgid.d
0794c7
%config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example
0794c7
%config(noreplace) %{_sysconfdir}/sysconfig/corosync-notifyd
0794c7
%config(noreplace) %{_sysconfdir}/sysconfig/corosync
0794c7
%config(noreplace) %{_sysconfdir}/logrotate.d/corosync
0794c7
%if %{with dbus}
0794c7
%{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
0794c7
%endif
0794c7
%if %{with snmp}
0794c7
%{_datadir}/snmp/mibs/COROSYNC-MIB.txt
0794c7
%endif
0794c7
%if %{with systemd}
0794c7
%{_unitdir}/corosync.service
0794c7
%{_unitdir}/corosync-notifyd.service
0794c7
%else
0794c7
%{_initrddir}/corosync
0794c7
%{_initrddir}/corosync-notifyd
0794c7
%endif
0794c7
%dir %{_localstatedir}/lib/corosync
0794c7
%dir %{_localstatedir}/log/cluster
0794c7
%{_mandir}/man7/corosync_overview.7*
0794c7
%{_mandir}/man8/corosync.8*
0794c7
%{_mandir}/man8/corosync-blackbox.8*
0794c7
%{_mandir}/man8/corosync-cmapctl.8*
0794c7
%{_mandir}/man8/corosync-keygen.8*
0794c7
%{_mandir}/man8/corosync-cfgtool.8*
0794c7
%{_mandir}/man8/corosync-cpgtool.8*
0794c7
%{_mandir}/man8/corosync-notifyd.8*
0794c7
%{_mandir}/man8/corosync-quorumtool.8*
0794c7
%{_mandir}/man5/corosync.conf.5*
0794c7
%{_mandir}/man5/votequorum.5*
cfddb1
%{_mandir}/man7/cmap_keys.7*
0794c7
0794c7
# library
0794c7
#
0794c7
%package -n corosynclib
0794c7
Summary: The Corosync Cluster Engine Libraries
0794c7
0794c7
%description -n corosynclib
0794c7
This package contains corosync libraries.
0794c7
0794c7
%files -n corosynclib
0794c7
%doc LICENSE
0794c7
%{_libdir}/libcfg.so.*
0794c7
%{_libdir}/libcpg.so.*
0794c7
%{_libdir}/libcmap.so.*
0794c7
%{_libdir}/libquorum.so.*
0794c7
%{_libdir}/libvotequorum.so.*
0794c7
%{_libdir}/libsam.so.*
0794c7
%{_libdir}/libcorosync_common.so.*
0794c7
0794c7
%post -n corosynclib -p /sbin/ldconfig
0794c7
0794c7
%postun -n corosynclib -p /sbin/ldconfig
0794c7
0794c7
%package -n corosynclib-devel
0794c7
Summary: The Corosync Cluster Engine Development Kit
0794c7
Requires: corosynclib%{?_isa} = %{version}-%{release}
0794c7
Requires: pkgconfig
0794c7
Provides: corosync-devel = %{version}
0794c7
0794c7
%description -n corosynclib-devel
0794c7
This package contains include files and man pages used to develop using
0794c7
The Corosync Cluster Engine APIs.
0794c7
0794c7
%files -n corosynclib-devel
0794c7
%doc LICENSE
0794c7
%dir %{_includedir}/corosync/
0794c7
%{_includedir}/corosync/corodefs.h
0794c7
%{_includedir}/corosync/cfg.h
0794c7
%{_includedir}/corosync/cmap.h
0794c7
%{_includedir}/corosync/corotypes.h
0794c7
%{_includedir}/corosync/cpg.h
0794c7
%{_includedir}/corosync/hdb.h
0794c7
%{_includedir}/corosync/sam.h
0794c7
%{_includedir}/corosync/quorum.h
0794c7
%{_includedir}/corosync/votequorum.h
0794c7
%{_libdir}/libcfg.so
0794c7
%{_libdir}/libcpg.so
0794c7
%{_libdir}/libcmap.so
0794c7
%{_libdir}/libquorum.so
0794c7
%{_libdir}/libvotequorum.so
0794c7
%{_libdir}/libsam.so
0794c7
%{_libdir}/libcorosync_common.so
0794c7
%{_libdir}/pkgconfig/*.pc
0794c7
%{_mandir}/man3/cpg_*3*
0794c7
%{_mandir}/man3/quorum_*3*
0794c7
%{_mandir}/man3/votequorum_*3*
0794c7
%{_mandir}/man3/sam_*3*
0794c7
%{_mandir}/man3/cmap_*3*
0794c7
848391
%if %{with vqsim}
848391
%package -n corosync-vqsim
848391
Summary: The Corosync Cluster Engine - Votequorum Simulator
848391
Requires: corosynclib%{?_isa} = %{version}-%{release}
848391
Requires: pkgconfig
848391
848391
%description -n corosync-vqsim
848391
A command-line simulator for the corosync votequorum subsystem.
848391
It uses the same code as the corosync quorum system but forks
848391
them into subprocesses to simulate nodes.
848391
Nodes can be added and removed as well as partitioned (to simulate
848391
network splits)
848391
848391
%files -n corosync-vqsim
848391
%doc LICENSE
848391
%{_bindir}/corosync-vqsim
848391
%{_mandir}/man8/corosync-vqsim.8*
848391
%endif
848391
848391
# optional spausedd
848391
%if %{with spausedd}
848391
848391
%package -n spausedd
848391
Summary: Utility to detect and log scheduler pause
848391
URL: https://github.com/jfriesse/spausedd
848391
848391
%if %{with systemd}
848391
%{?systemd_requires}
848391
%else
848391
Requires(post): /sbin/chkconfig
848391
Requires(preun): /sbin/chkconfig
848391
%endif
848391
848391
%description -n spausedd
848391
Utility to detect and log scheduler pause
848391
848391
%files -n spausedd
848391
%doc spausedd-%{spausedd_version}/AUTHORS spausedd-%{spausedd_version}/COPYING
848391
%{_bindir}/spausedd
848391
%{_mandir}/man8/spausedd*
848391
%if %{with systemd}
848391
%{_unitdir}/spausedd.service
848391
%else
848391
%{_initrddir}/spausedd
848391
%endif
848391
848391
%post -n spausedd
848391
%if %{with systemd} && 0%{?systemd_post:1}
848391
%systemd_post spausedd.service
848391
%else
848391
if [ $1 -eq 1 ]; then
848391
    /sbin/chkconfig --add spausedd || :
848391
fi
848391
%endif
848391
848391
%preun -n spausedd
848391
%if %{with systemd} && 0%{?systemd_preun:1}
848391
%systemd_preun spausedd.service
848391
%else
848391
if [ $1 -eq 0 ]; then
848391
    /sbin/service spausedd stop &>/dev/null || :
848391
    /sbin/chkconfig --del spausedd || :
848391
fi
848391
%endif
848391
848391
%postun -n spausedd
848391
%if %{with systemd} && 0%{?systemd_postun:1}
848391
    %systemd_postun spausedd.service
848391
%endif
848391
848391
%endif
848391
0794c7
%changelog
0a07e1
* Tue Nov 15 2022 Jan Friesse <jfriesse@redhat.com> 3.1.7-1
0a07e1
- Resolves: rhbz#2135860
0a07e1
0a07e1
- New upstream release (rhbz#2135860)
0a07e1
70e21d
* Wed Nov 24 2021 Jan Friesse <jfriesse@redhat.com> 3.1.5-2
70e21d
- Resolves: rhbz#2002115
70e21d
- Resolves: rhbz#2024658
70e21d
70e21d
- totem: Add cancel_hold_on_retransmit config option (rhbz#2002115)
70e21d
- merge upstream commit cdf72925db5a81e546ca8e8d7d8291ee1fc77be4 (rhbz#2002115)
70e21d
- totemsrp: Switch totempg buffers at the right time (rhbz#2024658)
70e21d
- merge upstream commit e7a82370a7b5d3ca342d5e42e25763fa2c938739 (rhbz#2024658)
70e21d
794213
* Wed Aug 04 2021 Jan Friesse <jfriesse@redhat.com> 3.1.5-1
794213
- Related: rhbz#1948973
794213
794213
- New upstream release (rhbz#1948973)
794213
794213
* Thu Jun 03 2021 Jan Friesse <jfriesse@redhat.com> 3.1.4-1
794213
- Related: rhbz#1948973
794213
- Resolves: rhbz#1962139
794213
794213
- New upstream release (rhbz#1948973)
794213
- stats: fix crash when iterating over deleted keys (rhbz#1962139)
794213
794213
* Fri May 21 2021 Jan Friesse <jfriesse@redhat.com> 3.1.3-1
794213
- Resolves: rhbz#1948973
794213
794213
- New upstream release (rhbz#1948973)
794213
794213
* Fri Apr 30 2021 Jan Friesse <jfriesse@redhat.com> 3.1.0-5
794213
- Resolves: rhbz#1954432
794213
794213
* Tue Apr 06 2021 Jan Friesse <jfriesse@redhat.com> 3.1.0-4
794213
- Resolves: rhbz#1946623
06a7ea
794213
- knet: pass correct handle to knet_handle_compress (rhbz#1946623)
06a7ea
4a781e
* Thu Nov 12 2020 Jan Friesse <jfriesse@redhat.com> 3.1.0-3
4a781e
- Resolves: rhbz#1897085
4a781e
- Resolves: rhbz#1896493
4a781e
4a781e
- spausedd: Add ability to move process into root cgroup (rhbz#1897085)
4a781e
- totemknet: Check both cipher and hash for crypto (rhbz#1896493)
4a781e
4a781e
* Tue Nov 10 2020 Jan Friesse <jfriesse@redhat.com> 3.1.0-2
4a781e
- Resolves: rhbz#1896309
4a781e
4a781e
- Fix log_perror (rhbz#1896309)
4a781e
4a781e
* Tue Oct 20 2020 Jan Friesse <jfriesse@redhat.com> 3.1.0-1
4a781e
- Resolves: rhbz#1855293
4a781e
- Resolves: rhbz#1855303
4a781e
- Resolves: rhbz#1870449
4a781e
- Resolves: rhbz#1887400
4a781e
4a781e
- New upstream release (rhbz#1855293)
4a781e
- Support for reload of crypto configuration (rhbz#1855303)
4a781e
- Increase default token timeout to 3000ms (rhbz#1870449)
4a781e
- Add support for nodelist callback into quorum service (rhbz#1887400)
4a781e
cfddb1
* Tue May 26 2020 Jan Friesse <jfriesse@redhat.com> 3.0.3-4
cfddb1
- Resolves: rhbz#1780137
cfddb1
- Resolves: rhbz#1791792
cfddb1
- Resolves: rhbz#1809864
cfddb1
- Resolves: rhbz#1816653
cfddb1
cfddb1
- votequorum: Ignore the icmap_get_* return value (rhbz#1780137)
cfddb1
- merge upstream commit cddd62f972bca276c934e58f08da84071cec1ddb (rhbz#1780137)
cfddb1
- man: move cmap_keys man page from section 8 to 7 (rhbz#1791792)
cfddb1
- merge upstream commit f1d36307e524f9440733f0b01a9fc627a0e1cac7 (rhbz#1791792)
cfddb1
- votequorum: Reflect runtime change of 2Node to WFA (rhbz#1780137)
cfddb1
- merge upstream commit 8ce65bf951bc1e5b2d64b60ea027fbdc551d4fc8 (rhbz#1780137)
cfddb1
- stats: Add stats for scheduler misses (rhbz#1791792)
cfddb1
- merge upstream commit 48b6894ef41e9a06ccbb696d062d86ef60dc2c4b (rhbz#1791792)
cfddb1
- stats: Use nanoseconds from epoch for schedmiss (rhbz#1791792)
cfddb1
- merge upstream commit ebd05fa00826c366922e619b012a0684c6856539 (rhbz#1791792)
cfddb1
- main: Add schedmiss timestamp into message (rhbz#1791792)
cfddb1
- merge upstream commit 35662dd0ec53f456445c30c0ef92892f47b25aa2 (rhbz#1791792)
cfddb1
- votequorum: Change check of expected_votes (rhbz#1809864)
cfddb1
- merge upstream commit 0c16442f2d93f32a229b87d2672e2dc8025ec704 (rhbz#1809864)
cfddb1
- quorumtool: exit on invalid expected votes (rhbz#1809864)
cfddb1
- merge upstream commit 5f543465bb3506b7f4929a426f1c22a9c854cecd (rhbz#1809864)
cfddb1
- votequorum: set wfa status only on startup (rhbz#1816653)
cfddb1
- merge upstream commit ca320beac25f82c0c555799e647a47975a333c28 (rhbz#1816653)
cfddb1
cfddb1
* Tue Apr 28 2020 Jan Friesse <jfriesse@redhat.com> - 3.0.3-3
cfddb1
- Resolves: rhbz#1828295
cfddb1
cfddb1
- Add explicit spausedd dependency for revdeps CI test
cfddb1
ced570
* Mon Nov 25 2019 Jan Friesse <jfriesse@redhat.com> - 3.0.3-2
ced570
- Related: rhbz#1745623
ced570
ced570
- New upstream release of spausedd
ced570
ced570
* Mon Nov 25 2019 Jan Friesse <jfriesse@redhat.com> - 3.0.3-1
ced570
- Resolves: rhbz#1745623
ced570
ced570
- New upstream release
ced570
ced570
* Wed Oct 30 2019 Jan Friesse <jfriesse@redhat.com> 3.0.2-4
ced570
- Resolves: rhbz#1745624
ced570
- Resolves: rhbz#1745642
ced570
- Resolves: rhbz#1749263
ced570
- Resolves: rhbz#1765025
ced570
ced570
- totem: fix check if all nodes have same number of links (rhbz#1749263)
ced570
- merge upstream commit 816324c94cfb917b11f43954b8757424db28b390 (rhbz#1749263)
ced570
- totem: Increase ring_id seq after load (rhbz#1745624)
ced570
- merge upstream commit 3675daceeeeb72af043f5c051daed463fdd2d2a1 (rhbz#1745624)
ced570
- man: Fix link_mode priority description (rhbz#1745642)
ced570
- merge upstream commit 0a323ff2ed0f2aff9cb691072906e69cb96ed662 (rhbz#1745642)
ced570
- totemsrp: Reduce MTU to left room second mcast (rhbz#1765025)
ced570
- merge upstream commit ee8b8993d98b3f6af9c058194228fc534fcd0796 (rhbz#1765025)
3e6e59
848391
* Tue Aug 06 2019 Jan Friesse <jfriesse@redhat.com> - 3.0.2-3
848391
- Resolves: rhbz#1738218
848391
848391
- Do not set exec permission for service file
848391
- Fix CFLAGS definition
848391
848391
* Thu Jun 13 2019 Jan Friesse <jfriesse@redhat.com> 3.0.2-2
848391
- Related: rhbz#1679656
848391
848391
- Improve spausedd test
848391
848391
* Wed Jun 12 2019 Jan Friesse <jfriesse@redhat.com> 3.0.2-1
848391
- Resolves: rhbz#1705591
848391
- Resolves: rhbz#1688889
848391
848391
* Mon May 13 2019 Jan Friesse <jfriesse@redhat.com> 3.0.0-4
848391
- Related: rhbz#1679656
848391
848391
- Really add gating
848391
848391
* Mon May 13 2019 Jan Friesse <jfriesse@redhat.com> 3.0.0-3
848391
- Resolves: rhbz#1691401
848391
- Related: rhbz#1679656
848391
848391
- Add spausedd subpackage
848391
- Add gating tests
848391
0794c7
* Fri Jan 11 2019 Jan Friesse <jfriesse@redhat.com> 3.0.0-2
0794c7
- Resolves: rhbz#1665211
0794c7
0794c7
- totemip: Use AF_UNSPEC for ipv4-6 and ipv6-4 (rhbz#1665211)
0794c7
- merge upstream commit 2ab4d4188670356dcb82a80f2fc4598f5145c77d (rhbz#1665211)
0794c7
0794c7
* Fri Dec 14 2018 Jan Friesse <jfriesse@redhat.com> - 3.0.0-1
0794c7
- Resolves: rhbz#1600915
0794c7
0794c7
- New upstream release
0794c7
0794c7
* Tue Dec 11 2018 Jan Friesse <jfriesse@redhat.com> 2.99.5-2
0794c7
- Resolves: rhbz#1654630
0794c7
0794c7
- man: Add some information about address resolution (rhbz#1654630)
0794c7
- merge upstream commit 8d50bd946dd7e01da75f06da3f885e7dc82f4f12 (rhbz#1654630)
848391
- config: Look up hostnames in a defined order (rhbz#1654630)
0794c7
- merge upstream commit 3d7f136f86a56dd9d9caa9060f7a01e8b681eb7f (rhbz#1654630)
0794c7
0794c7
* Fri Dec  7 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.5-1
0794c7
- Related: rhbz#1600915
0794c7
0794c7
- New upstream release
0794c7
0794c7
* Tue Dec  4 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.4-2
0794c7
- Resolves: rhbz#1655179
0794c7
0794c7
- Add libknet1-crypto-nss-plugin dependency
0794c7
0794c7
* Tue Nov 20 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.4-1
0794c7
- Related: rhbz#1600915
0794c7
0794c7
- New upstream release
0794c7
0794c7
* Mon Oct 15 2018 Jan Friesse <jfriesse@redhat.com> 2.99.3-5
0794c7
- Resolves: rhbz#1639211
0794c7
0794c7
- config: Fix crash in reload if new interfaces are added (rhbz#1639211)
0794c7
- merge upstream commit 9f2d5a3a3faa8bd1021b505bcf3c5428b3435e39 (rhbz#1639211)
0794c7
0794c7
* Tue Sep 18 2018 Jan Friesse <jfriesse@redhat.com> 2.99.3-4
0794c7
- Related: rhbz#1615945
0794c7
0794c7
- Rebuild for new LibQB
0794c7
0794c7
* Mon Aug 20 2018 Jan Friesse <jfriesse@redhat.com> 2.99.3-3
0794c7
- Resolves: rhbz#1602409
0794c7
0794c7
- Remove libcgroup (rhbz#1602409)
0794c7
- merge upstream commit c9e5d6db13fa965d83e27a3b664477e9b5b26edf (rhbz#1602409)
0794c7
0794c7
* Mon Jul 30 2018 Florian Weimer <fweimer@redhat.com> - 2.99.3-2
0794c7
- Rebuild with fixed binutils
0794c7
0794c7
* Fri Jul 13 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.3-1
0794c7
- New upstream release
0794c7
0794c7
* Mon Apr 30 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.2-1
0794c7
- New upstream release
0794c7
0794c7
* Fri Mar 16 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.1-1
0794c7
- New upstream release
0794c7
0794c7
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.3-3
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
0794c7
0794c7
* Fri Jan 19 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.3-2
0794c7
- Rebuild to fix upgradepath
0794c7
0794c7
* Fri Oct 20 2017 Jan Friesse <jfriesse@redhat.com> - 2.4.3-1
0794c7
- New upstream release
0794c7
0794c7
* Mon Oct 09 2017 Troy Dawson <tdawson@redhat.com> - 2.4.2-7
0794c7
- Cleanup spec file conditionals
0794c7
0794c7
* Mon Oct 02 2017 Troy Dawson <tdawson@redhat.com> - 2.4.2-6
0794c7
- Bump to rebuild on newer binutils
0794c7
0794c7
* Wed Aug 23 2017 Adam Williamson <awilliam@redhat.com> - 2.4.2-5
0794c7
- Disable RDMA on 32-bit ARM (#1484155)
0794c7
0794c7
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-4
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
0794c7
0794c7
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-3
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
0794c7
0794c7
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-2
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
0794c7
0794c7
* Mon Nov  7 2016 Jan Friesse <jfriesse@redhat.com> - 2.4.2-1
0794c7
- New upstream release
0794c7
0794c7
* Thu Aug  4 2016 Jan Friesse <jfriesse@redhat.com> - 2.4.1-1
0794c7
- New upstream release
0794c7
0794c7
* Thu Jun 30 2016 Jan Friesse <jfriesse@redhat.com> - 2.4.0-1
0794c7
- New upstream release
0794c7
0794c7
* Thu Jun 16 2016 Jan Friesse <jfriesse@redhat.com> - 2.3.6-1
0794c7
- New upstream release
0794c7
0794c7
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.5-2
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
0794c7
0794c7
* Wed Jul 01 2015 Jan Friesse <jfriesse@redhat.com> - 2.3.5-1
0794c7
- New upstream release
0794c7
0794c7
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.4-2
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
0794c7
0794c7
* Tue Aug 26 2014 Jan Friesse <jfriesse@redhat.com> - 2.3.4-1
0794c7
- New upstream release
0794c7
0794c7
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3-3
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
0794c7
0794c7
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3-2
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
0794c7
0794c7
* Tue Jan 14 2014 Jan Friesse <jfriesse@redhat.com> - 2.3.3-1
0794c7
- New upstream release
0794c7
0794c7
* Mon Sep 16 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.2-1
0794c7
- New upstream release
0794c7
0794c7
* Mon Aug 19 2013 Jan Friesse <jfriesse@redhat.com> 2.3.1-3
0794c7
- Resolves: rhbz#998362
0794c7
0794c7
- Fix scheduler pause-detection timeout (rhbz#998362)
0794c7
- merge upstream commit 2740cfd1eac60714601c74df2137fe588b607866 (rhbz#998362)
0794c7
0794c7
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-2
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
0794c7
0794c7
* Wed Jul 10 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.1-1
0794c7
- New upstream release
0794c7
- Fix incorrect dates in specfile changelog section
0794c7
0794c7
* Mon Mar 25 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.0-3
0794c7
- Resolves: rhbz#925185
0794c7
0794c7
- Run autogen by default
0794c7
0794c7
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-2
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
0794c7
0794c7
* Fri Jan 18 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.0-1
0794c7
- New upstream release
0794c7
0794c7
* Wed Dec 12 2012 Jan Friesse <jfriesse@redhat.com> - 2.2.0-1
0794c7
- New upstream release
0794c7
0794c7
* Thu Oct 11 2012 Jan Friesse <jfriesse@redhat.com> - 2.1.0-1
0794c7
- New upstream release
0794c7
0794c7
* Fri Aug 3 2012 Steven Dake <sdake@redhat.com> - 2.0.1-3
0794c7
- add groff as a BuildRequires as it is no longer installed in the buildroot
0794c7
0794c7
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-2
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
0794c7
0794c7
* Tue May 22 2012 Jan Friesse <jfriesse@redhat.com> - 2.0.1-1
0794c7
- New upstream release
0794c7
0794c7
* Tue Apr 17 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 2.0.0-2
0794c7
- Backport IPCS fix from master (ack by Steven)
0794c7
0794c7
* Tue Apr 10 2012 Jan Friesse <jfriesse@redhat.com> - 2.0.0-1
0794c7
- New upstream release
0794c7
0794c7
* Thu Apr 05 2012 Karsten Hopp <karsten@redhat.com> 1.99.9-1.1
0794c7
- bump release and rebuild on PPC
0794c7
0794c7
* Tue Mar 27 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.9-1
0794c7
- New upstream release
0794c7
0794c7
* Fri Mar 16 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.8-1
0794c7
- New upstream release
0794c7
0794c7
* Tue Mar  6 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.7-1
0794c7
- New upstream release
0794c7
0794c7
* Tue Feb 28 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.6-1
0794c7
- New upstream release
0794c7
0794c7
* Wed Feb 22 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.5-1
0794c7
- New upstream release
0794c7
0794c7
* Tue Feb 14 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.4-1
0794c7
- New upstream release
0794c7
0794c7
* Tue Feb 14 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.3-1
0794c7
- New upstream release
0794c7
0794c7
* Tue Feb  7 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.2-1
0794c7
- New upstream release
0794c7
- Re-enable xmlconfig bits
0794c7
- Ship cmap man pages
0794c7
- Add workaround to usrmove breakage!!
0794c7
0794c7
* Thu Feb  2 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.1-2
0794c7
- Add proper Obsoltes on openais/cman/clusterlib
0794c7
0794c7
* Wed Feb  1 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.1-1
0794c7
- New upstream release
0794c7
- Temporary disable xml config (broken upstream tarball)
0794c7
0794c7
* Tue Jan 24 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.0-1
0794c7
- New upstream release
0794c7
0794c7
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-2
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
0794c7
0794c7
* Thu Oct 06 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.2-1
0794c7
- New upstream release
0794c7
0794c7
* Thu Sep 08 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.1-2
0794c7
- Add upstream fixes
0794c7
0794c7
* Tue Jul 26 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.1-1
0794c7
- New upstream release
0794c7
0794c7
* Wed Jul 20 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.0-2
0794c7
- Change attributes of cluster log directory
0794c7
0794c7
* Tue Jul 19 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.0-1
0794c7
- New upstream release
0794c7
- Resync spec file with upstream changes
0794c7
0794c7
* Fri Jul 08 2011 Jan Friesse <jfriesse@redhat.com> - 1.3.2-1
0794c7
- New upstream release
0794c7
0794c7
* Tue May 10 2011 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.3.1-1
0794c7
- New upstream release
0794c7
0794c7
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
0794c7
0794c7
* Thu Dec  2 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.3.0-1
0794c7
- New upstream release
0794c7
- drop upstream patch revision-2770.patch now included in release
0794c7
- update spec file to ship corosync-blackbox
0794c7
0794c7
* Thu Sep  2 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.8-1
0794c7
- New upstream release
0794c7
0794c7
* Thu Jul 29 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.7-1
0794c7
- New upstream release
0794c7
0794c7
* Fri Jul  9 2010 Dan Horák <dan[at]danny.cz> - 1.2.6-2
0794c7
- no InfiniBand stack on s390(x)
0794c7
0794c7
* Mon Jul  5 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.6-1
0794c7
- New upstream release
0794c7
- Resync spec file with upstream changes
0794c7
0794c7
* Tue May 25 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.3-1
0794c7
- New upstream release
0794c7
- Rediff revision 2770 patch
0794c7
0794c7
* Mon May 17 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.2-1
0794c7
- New upstream release
0794c7
- Add upstream trunk revision 2770 to add cpg_model_initialize api.
0794c7
- Fix URL and Source0 entries.
0794c7
- Add workaround to broken 1.2.2 Makefile with make -j.
0794c7
0794c7
* Wed Mar 24 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.1-1
0794c7
- New upstream release
0794c7
0794c7
* Tue Dec  8 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.0-1
0794c7
- New upstream release
0794c7
- Use global instead of define
0794c7
- Update Source0 url
0794c7
- Use more name macro around
0794c7
- Cleanup install section. Init script is now installed by upstream
0794c7
- Cleanup whitespace
0794c7
- Don't deadlock between package upgrade and corosync condrestart
0794c7
- Ship service.d config directory
0794c7
- Fix Conflicts vs Requires
0794c7
- Ship new sam library and man pages
0794c7
0794c7
* Fri Oct 23 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.2-1
0794c7
- New upstream release fixes major regression on specific loads
0794c7
0794c7
* Wed Oct 21 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.1-1
0794c7
- New upstream release
0794c7
0794c7
* Fri Sep 25 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.0-1
0794c7
- New upstream release
0794c7
- spec file updates:
0794c7
  * enable IB support
0794c7
  * explicitly define built-in features at configure time
0794c7
0794c7
* Tue Sep 22 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.1-1
0794c7
- New upstream release
0794c7
- spec file updates:
0794c7
  * use proper configure macro
0794c7
0794c7
* Tue Jul 28 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.0-3
0794c7
- spec file updates:
0794c7
  * more consistent use of macros across the board
0794c7
  * fix directory ownership
0794c7
0794c7
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-2
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
0794c7
0794c7
* Wed Jul  8 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.0-1
0794c7
- New upstream release
0794c7
0794c7
* Thu Jul  2 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.100-1
0794c7
- New upstream release
0794c7
0794c7
* Sat Jun 20 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.98-1
0794c7
- New upstream release
0794c7
- spec file updates:
0794c7
  * Drop corosync-trunk patch and alpha tag.
0794c7
  * Fix alphatag vs buildtrunk handling.
0794c7
  * Drop requirement on ais user/group and stop creating them.
0794c7
  * New config file locations from upstream: /etc/corosync/corosync.conf.
0794c7
0794c7
* Wed Jun 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.97-1.svn2233
0794c7
- spec file updates:
0794c7
  * Update to svn version 2233 to include library linking fixes
0794c7
0794c7
* Wed Jun 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.97-1.svn2232
0794c7
- New upstream release
0794c7
- spec file updates:
0794c7
  * Drop pkgconfig fix that's now upstream
0794c7
  * Update to svn version 2232
0794c7
  * Define buildtrunk if we are using svn snapshots
0794c7
  * BuildRequires: nss-devel to enable nss crypto for network communication
0794c7
  * Force autogen invokation if buildtrunk is defined
0794c7
  * Whitespace cleanup
0794c7
  * Stop shipping corosync.conf in favour of a generic example
0794c7
  * Update file list
0794c7
0794c7
* Mon Mar 30 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.95-2
0794c7
- Backport svn commit 1913 to fix pkgconfig files generation
0794c7
  and unbreak lvm2 build.
0794c7
0794c7
* Tue Mar 24 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.95-1
0794c7
- New upstream release
0794c7
- spec file updates:
0794c7
  * Drop alpha tag
0794c7
  * Drop local patches (no longer required)
0794c7
  * Allow to build from svn trunk by supporting rpmbuild --with buildtrunk 
0794c7
  * BuildRequires autoconf automake if building from trunk
0794c7
  * Execute autogen.sh if building from trunk and if no configure is available
0794c7
  * Switch to use rpm configure macro and set standard install paths
0794c7
  * Build invokation now supports _smp_mflags
0794c7
  * Remove install section for docs and use proper doc macro instead
0794c7
  * Add tree fixup bits to drop static libs and html docs (only for now)
0794c7
  * Add LICENSE file to all subpackages
0794c7
  * libraries have moved to libdir. Drop ld.so.conf.d corosync file
0794c7
  * Update BuildRoot usage to preferred versions/names
0794c7
0794c7
* Tue Mar 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-5.svn1797
0794c7
- Update the corosync-trunk patch for real this time.
0794c7
0794c7
* Tue Mar 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-4.svn1797
0794c7
- Import fixes from upstream:
0794c7
  * Cleanup logsys format init around to use default settings (1795)
0794c7
  * logsys_format_set should use its own internal copy of format_buffer (1796)
0794c7
  * Add logsys_format_get to logsys API (1797)
0794c7
- Cherry pick svn1807 to unbreak CPG.
0794c7
0794c7
* Mon Mar  9 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-3.svn1794
0794c7
- Import fixes from upstream:
0794c7
  * Add reserve/release feature to totem message queue space (1793)
0794c7
  * Fix CG shutdown (1794)
0794c7
0794c7
* Fri Mar  6 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-2.svn1792
0794c7
- Import fixes from upstream:
0794c7
  * Fix uninitialized memory. Spotted by valgrind (1788)
0794c7
  * Fix logsys_set_format by updating the right bits (1789)
0794c7
  * logsys: re-add support for timestamp  (1790)
0794c7
  * Fix cpg crash (1791)
0794c7
  * Allow logsys_format_set to reset to default (1792)
0794c7
0794c7
* Tue Mar  3 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-1
0794c7
- New upstream release.
0794c7
- Drop obsolete patches.
0794c7
- Add soname bump patch that was missing from upstream.
0794c7
0794c7
* Wed Feb 25 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-4
0794c7
- Add Makefile fix to install all corosync tools (commit r1780)
0794c7
0794c7
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.93-3
0794c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
0794c7
0794c7
* Mon Feb 23 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-2
0794c7
- Rename gcc-4.4 patch to match svn commit (r1767).
0794c7
- Backport patch from trunk (commit r1774) to fix quorum engine.
0794c7
0794c7
* Thu Feb 19 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-1
0794c7
- New upstream release.
0794c7
- Drop alphatag from spec file.
0794c7
- Drop trunk patch.
0794c7
- Update Provides for corosynclib-devel.
0794c7
- Backport gcc-4.4 build fix from trunk.
0794c7
0794c7
* Mon Feb  2 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-7.svn1756
0794c7
- Update to svn trunk at revision 1756 from upstream.
0794c7
- Add support pkgconfig to devel package.
0794c7
- Tidy up spec files by re-organazing sections according to packages.
0794c7
- Split libraries from corosync to corosynclib.
0794c7
- Rename corosync-devel to corosynclib-devel.
0794c7
- Comply with multiarch requirements (libraries).
0794c7
0794c7
* Tue Jan 27 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-6.svn1750
0794c7
- Update to svn trunk at revision 1750 from upstream.
0794c7
- Include new quorum service in the packaging.
0794c7
0794c7
* Mon Dec 15 2008 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-5.svn1709
0794c7
- Update to svn trunk at revision 1709 from upstream.
0794c7
- Update spec file to include new include files.
0794c7
0794c7
* Wed Dec 10 2008 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-4.svn1707
0794c7
- Update to svn trunk at revision 1707 from upstream.
0794c7
- Update spec file to include new lcrso services and include file.
0794c7
0794c7
* Mon Oct 13 2008 Dennis Gilmore <dennis@ausil.us> - 0.92-3
0794c7
- remove ExclusiveArch line
0794c7
0794c7
* Wed Sep 24 2008 Steven Dake <sdake@redhat.com> - 0.92-2
0794c7
- Add conflicts for openais and openais-devel packages older then 0.90.
0794c7
0794c7
* Wed Sep 24 2008 Steven Dake <sdake@redhat.com> - 0.92-1
0794c7
- New upstream release corosync-0.92.
0794c7
0794c7
* Sun Aug 24 2008 Steven Dake <sdake@redhat.com> - 0.91-3
0794c7
- move logsys_overview.8.* to devel package.
0794c7
- move shared libs to main package.
0794c7
0794c7
* Wed Aug 20 2008 Steven Dake <sdake@redhat.com> - 0.91-2
0794c7
- use /sbin/service instead of calling init script directly.
0794c7
- put corosync-objctl man page in the main package.
0794c7
- change all initrddir to initddir for fedora 10 guidelines.
0794c7
0794c7
* Thu Aug 14 2008 Steven Dake <sdake@redhat.com> - 0.91-1
0794c7
- First upstream packaged version of corosync for rawhide review.