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
8b462f
%bcond_without qdevices
8b462f
%bcond_without qnetd
df4b1e
%bcond_without libcgroup
478375
%bcond_without spausedd
963052
963052
%global gitver %{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}
963052
%global gittarver %{?numcomm:.%{numcomm}}%{?alphatag:-%{alphatag}}%{?dirty:-%{dirty}}
963052
478375
%if %{with spausedd}
8690b7
%global spausedd_version 20190807
478375
%endif
478375
963052
Name: corosync
963052
Summary: The Corosync Cluster Engine and Application Programming Interfaces
8690b7
Version: 2.4.5
da48c0
Release: 7%{?gitver}%{?dist}.2
963052
License: BSD
963052
Group: System Environment/Base
8b462f
URL: http://corosync.github.io/corosync/
8b462f
Source0: http://build.clusterlabs.org/corosync/releases/%{name}-%{version}%{?gittarver}.tar.gz
478375
%if %{with spausedd}
478375
Source1: https://github.com/jfriesse/spausedd/releases/download/%{spausedd_version}/spausedd-%{spausedd_version}.tar.gz
478375
# VMGuestLib exists only for x86_64 architecture
478375
%ifarch x86_64
478375
%global use_vmguestlib 1
478375
%endif
478375
%endif
8b462f
8690b7
Patch0: bz1656492-1-totem-Increase-ring_id-seq-after-load.patch
c29fdf
Patch1: bz1780134-1-votequorum-Ignore-the-icmap_get_-return-value.patch
c29fdf
Patch2: bz1780134-2-votequorum-Reflect-runtime-change-of-2Node-to-WFA.patch
c29fdf
Patch3: bz1679792-1-votequorum-set-wfa-status-only-on-startup.patch
c29fdf
Patch4: bz1835885-1-stats-Add-basic-schedule-miss-stats-to-needle.patch
c29fdf
Patch5: bz1835885-2-main-Add-schedmiss-timestamp-into-message.patch
c29fdf
Patch6: bz1835885-3-main-Make-schedmiss-in-cmap-and-log-equal.patch
acdf5d
Patch7: bz1896311-1-Fix-log_perror.patch
acdf5d
Patch8: bz1897087-1-Add-ability-to-move-process-into-root-cgroup.patch
da48c0
Patch9: bz2001969-1-totem-Add-cancel_hold_on_retransmit-config-option.patch
cf1c78
963052
%if 0%{?rhel}
8968bb
ExclusiveArch: i686 x86_64 s390x ppc64le aarch64 %{arm}
963052
%endif
963052
963052
# Runtime bits
8690b7
# The automatic dependency overridden in favor of explicit version lock
8690b7
Requires: corosynclib%{?_isa} = %{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
8690b7
BuildRequires: gcc
963052
BuildRequires: groff
963052
BuildRequires: libqb-devel >= 0.14.2
963052
BuildRequires: nss-devel
f1cb04
BuildRequires: zlib-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
8b462f
%if %{with qdevices} || %{with qnetd}
8b462f
Requires: nss-tools
8b462f
%endif
8b462f
%if %{with qnetd}
8b462f
BuildRequires: sed
8b462f
%endif
df4b1e
%if %{with libcgroup}
df4b1e
BuildRequires: libcgroup-devel
df4b1e
%endif
478375
%if %{defined use_vmguestlib}
478375
BuildRequires: pkgconfig(vmguestlib)
478375
%endif
963052
963052
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
963052
963052
%prep
478375
%if %{with spausedd}
478375
%setup -q -a 1 -n %{name}-%{version}%{?gittarver}
478375
%else
963052
%setup -q -n %{name}-%{version}%{?gittarver}
478375
%endif
478375
8690b7
%patch0 -p1 -b .bz1656492-1
c29fdf
%patch1 -p1 -b .bz1780134-1
c29fdf
%patch2 -p1 -b .bz1780134-2
c29fdf
%patch3 -p1 -b .bz1679792-1
c29fdf
%patch4 -p1 -b .bz1835885-1
c29fdf
%patch5 -p1 -b .bz1835885-2
c29fdf
%patch6 -p1 -b .bz1835885-3
acdf5d
%patch7 -p1 -d spausedd-%{spausedd_version}
acdf5d
%patch8 -p1 -d spausedd-%{spausedd_version}
da48c0
%patch9 -p1 -b .bz2001969-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
8b462f
%if %{with qdevices}
8b462f
	--enable-qdevices \
8b462f
%endif
8b462f
%if %{with qnetd}
8b462f
	--enable-qnetd \
8b462f
%endif
df4b1e
%if %{with libcgroup}
df4b1e
	--enable-libcgroup \
df4b1e
%endif
963052
	--with-initddir=%{_initrddir} \
963052
	--with-systemddir=%{_unitdir} \
478375
	--with-upstartdir=%{_sysconfdir}/init
963052
963052
make %{_smp_mflags}
963052
478375
%if %{with spausedd}
478375
cd spausedd-%{spausedd_version}
4d7117
CFLAGS="${CFLAGS:-%{optflags}}" ; export CFLAGS
478375
make \
478375
%if %{defined use_vmguestlib}
478375
    WITH_VMGUESTLIB=1 \
478375
%else
478375
    WITH_VMGUESTLIB=0 \
478375
%endif
4d7117
    %{?_smp_mflags}
478375
%endif
478375
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
8b462f
%if %{with qdevices}
8b462f
# /etc/sysconfig/corosync-qdevice
8b462f
install -m 644 init/corosync-qdevice.sysconfig.example \
8b462f
   %{buildroot}%{_sysconfdir}/sysconfig/corosync-qdevice
8b462f
%endif
8b462f
8b462f
%if %{with qnetd}
8b462f
# /etc/sysconfig/corosync-qnetd
8b462f
install -m 644 init/corosync-qnetd.sysconfig.example \
8b462f
   %{buildroot}%{_sysconfdir}/sysconfig/corosync-qnetd
8b462f
%if %{with systemd}
8b462f
sed -i -e 's/^#User=/User=/' \
8b462f
   %{buildroot}%{_unitdir}/corosync-qnetd.service
8b462f
%else
8b462f
sed -i -e 's/^COROSYNC_QNETD_RUNAS=""$/COROSYNC_QNETD_RUNAS="coroqnetd"/' \
8b462f
   %{buildroot}%{_sysconfdir}/sysconfig/corosync-qnetd
8b462f
%endif
8b462f
%endif
8b462f
478375
%if %{with spausedd}
478375
cd spausedd-%{spausedd_version}
478375
make DESTDIR="%{buildroot}" PREFIX="%{_prefix}" install
478375
478375
%if %{with systemd}
478375
mkdir -p %{buildroot}/%{_unitdir}
4d7117
install -m 644 -p init/spausedd.service %{buildroot}/%{_unitdir}
478375
%else
478375
mkdir -p %{buildroot}/%{_initrddir}
478375
install -m 755 -p init/spausedd %{buildroot}/%{_initrddir}
478375
%endif
478375
478375
cd ..
478375
%endif
478375
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
f1cb04
%config(noreplace) %{_sysconfdir}/logrotate.d/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
8690b7
Requires: corosynclib%{?_isa} = %{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
8b462f
# optional qdevices
8b462f
#
8b462f
%if %{with qdevices}
8b462f
8b462f
%package -n corosync-qdevice
8b462f
Summary: The Corosync Cluster Engine Qdevice
8b462f
Group: System Environment/Base
8b462f
Requires: %{name} = %{version}-%{release}
8690b7
# The automatic dependency overridden in favor of explicit version lock
8690b7
Requires: corosynclib%{?_isa} = %{version}-%{release}
8b462f
Requires: nss-tools
8b462f
8b462f
%if %{with systemd}
8b462f
Requires(post): systemd
8b462f
Requires(preun): systemd
8b462f
Requires(postun): systemd
8b462f
%endif
8b462f
8b462f
%description -n corosync-qdevice
8b462f
This package contains the Corosync Cluster Engine Qdevice, script for creating
8b462f
NSS certificates and an init script.
8b462f
8b462f
%post -n corosync-qdevice
8b462f
%if %{with systemd} && 0%{?systemd_post:1}
8b462f
%systemd_post corosync-qdevice.service
8b462f
%else
8b462f
if [ $1 -eq 1 ]; then
8b462f
	/sbin/chkconfig --add corosync-qdevice || :
8b462f
fi
8b462f
%endif
8b462f
8b462f
%preun -n corosync-qdevice
8b462f
%if %{with systemd} && 0%{?systemd_preun:1}
8b462f
%systemd_preun corosync-qdevice.service
8b462f
%else
8b462f
if [ $1 -eq 0 ]; then
8b462f
	/sbin/service corosync-qdevice stop &>/dev/null || :
8b462f
	/sbin/chkconfig --del corosync-qdevice || :
8b462f
fi
8b462f
%endif
8b462f
8b462f
%postun -n corosync-qdevice
8b462f
%if %{with systemd} && 0%{?systemd_postun:1}
8b462f
%systemd_postun
8b462f
%endif
8b462f
8b462f
%files -n corosync-qdevice
8b462f
%defattr(-,root,root,-)
8b462f
%dir %{_sysconfdir}/corosync/qdevice
8b462f
%dir %config(noreplace) %{_sysconfdir}/corosync/qdevice/net
8b462f
%dir %{_localstatedir}/run/corosync-qdevice
8b462f
%{_sbindir}/corosync-qdevice
8b462f
%{_sbindir}/corosync-qdevice-net-certutil
8b462f
%{_sbindir}/corosync-qdevice-tool
8b462f
%config(noreplace) %{_sysconfdir}/sysconfig/corosync-qdevice
8b462f
%if %{with systemd}
8b462f
%{_unitdir}/corosync-qdevice.service
8b462f
%dir %{_datadir}/corosync
8b462f
%{_datadir}/corosync/corosync-qdevice
8b462f
%else
8b462f
%{_initrddir}/corosync-qdevice
8b462f
%endif
8b462f
%{_mandir}/man8/corosync-qdevice-tool.8*
8b462f
%{_mandir}/man8/corosync-qdevice-net-certutil.8*
8b462f
%{_mandir}/man8/corosync-qdevice.8*
8b462f
%endif
8b462f
8b462f
# optional qnetd
8b462f
#
8b462f
%if %{with qnetd}
8b462f
8b462f
%package -n corosync-qnetd
8b462f
Summary: The Corosync Cluster Engine Qdevice Network Daemon
8b462f
Group: System Environment/Base
8b462f
Requires: nss-tools
8b462f
Requires(pre): shadow-utils
8b462f
8b462f
%if %{with systemd}
8b462f
Requires(post): systemd
8b462f
Requires(preun): systemd
8b462f
Requires(postun): systemd
8b462f
%endif
8b462f
8b462f
%description -n corosync-qnetd
8b462f
This package contains the Corosync Cluster Engine Qdevice Network Daemon, script for creating
8b462f
NSS certificates and an init script.
8b462f
8b462f
%pre -n corosync-qnetd
8b462f
getent group coroqnetd >/dev/null || groupadd -r coroqnetd
8b462f
getent passwd coroqnetd >/dev/null || \
8b462f
    useradd -r -g coroqnetd -d / -s /sbin/nologin -c "User for corosync-qnetd" coroqnetd
8b462f
exit 0
597afd
8b462f
%post -n corosync-qnetd
8b462f
%if %{with systemd} && 0%{?systemd_post:1}
8b462f
%systemd_post corosync-qnetd.service
8b462f
%else
8b462f
if [ $1 -eq 1 ]; then
8b462f
	/sbin/chkconfig --add corosync-qnetd || :
8b462f
fi
8b462f
%endif
597afd
8b462f
%preun -n corosync-qnetd
8b462f
%if %{with systemd} && 0%{?systemd_preun:1}
8b462f
%systemd_preun corosync-qnetd.service
8b462f
%else
8b462f
if [ $1 -eq 0 ]; then
8b462f
	/sbin/service corosync-qnetd stop &>/dev/null || :
8b462f
	/sbin/chkconfig --del corosync-qnetd || :
8b462f
fi
8b462f
%endif
597afd
8b462f
%postun -n corosync-qnetd
8b462f
%if %{with systemd} && 0%{?systemd_postun:1}
8b462f
%systemd_postun
8b462f
%endif
597afd
8b462f
%files -n corosync-qnetd
8b462f
%defattr(-,root,root,-)
8b462f
%dir %config(noreplace) %attr(770, coroqnetd, coroqnetd) %{_sysconfdir}/corosync/qnetd
8b462f
%dir %attr(770, coroqnetd, coroqnetd) %{_localstatedir}/run/corosync-qnetd
8b462f
%{_bindir}/corosync-qnetd
8b462f
%{_bindir}/corosync-qnetd-certutil
8b462f
%{_bindir}/corosync-qnetd-tool
8b462f
%config(noreplace) %{_sysconfdir}/sysconfig/corosync-qnetd
8b462f
%if %{with systemd}
8b462f
%{_unitdir}/corosync-qnetd.service
8b462f
%dir %{_datadir}/corosync
8b462f
%{_datadir}/corosync/corosync-qnetd
8b462f
%else
8b462f
%{_initrddir}/corosync-qnetd
8b462f
%endif
8b462f
%{_mandir}/man8/corosync-qnetd-tool.8*
8b462f
%{_mandir}/man8/corosync-qnetd-certutil.8*
8b462f
%{_mandir}/man8/corosync-qnetd.8*
8b462f
%endif
5896ea
478375
# optional spausedd
478375
%if %{with spausedd}
478375
478375
%package -n spausedd
478375
Summary: Utility to detect and log scheduler pause
478375
URL: https://github.com/jfriesse/spausedd
478375
478375
%if %{with systemd}
478375
%{?systemd_requires}
478375
%else
478375
Requires(post): /sbin/chkconfig
478375
Requires(preun): /sbin/chkconfig
478375
%endif
478375
478375
%description -n spausedd
478375
Utility to detect and log scheduler pause
478375
478375
%files -n spausedd
478375
%doc spausedd-%{spausedd_version}/AUTHORS spausedd-%{spausedd_version}/COPYING
478375
%{_bindir}/spausedd
478375
%{_mandir}/man8/spausedd*
478375
%if %{with systemd}
478375
%{_unitdir}/spausedd.service
478375
%else
478375
%{_initrddir}/spausedd
478375
%endif
478375
478375
%post -n spausedd
478375
%if %{with systemd} && 0%{?systemd_post:1}
478375
%systemd_post spausedd.service
478375
%else
478375
if [ $1 -eq 1 ]; then
478375
    /sbin/chkconfig --add spausedd || :
478375
fi
478375
%endif
478375
478375
%preun -n spausedd
478375
%if %{with systemd} && 0%{?systemd_preun:1}
478375
%systemd_preun spausedd.service
478375
%else
478375
if [ $1 -eq 0 ]; then
478375
    /sbin/service spausedd stop &>/dev/null || :
478375
    /sbin/chkconfig --del spausedd || :
478375
fi
478375
%endif
478375
478375
%postun -n spausedd
478375
%if %{with systemd} && 0%{?systemd_postun:1}
478375
    %systemd_postun spausedd.service
478375
%endif
478375
478375
%endif
478375
8b462f
%changelog
da48c0
* Mon Oct 25 2021 Jan Friesse <jfriesse@redhat.com> 2.4.5-7.2
da48c0
- Resolves: rhbz#2001969
da48c0
da48c0
- totem: Add cancel_hold_on_retransmit config option (rhbz#2001969)
da48c0
acdf5d
* Fri Jan 15 2021 Jan Friesse <jfriesse@redhat.com> 2.4.5-7.1
acdf5d
- Resolves: rhbz#1896311
acdf5d
- Resolves: rhbz#1897087
acdf5d
acdf5d
- spausedd: Fix log_perror (rhbz#1896311)
acdf5d
- spausedd: Add ability to move process into root cgroup (rhbz#1897087)
acdf5d
c29fdf
* Fri Jun 5 2020 Jan Friesse <jfriesse@redhat.com> 2.4.5-7
c29fdf
- Related: rhbz#1835885
c29fdf
c29fdf
- main: Make schedmiss in cmap and log equal (rhbz#1835885)
c29fdf
- merge upstream commit 44c1c8ea31f981bdd7856d4eb8f4ac49f95a85e3 (rhbz#1835885)
c29fdf
c29fdf
* Thu May 28 2020 Jan Friesse <jfriesse@redhat.com> 2.4.5-6
c29fdf
- Resolves: rhbz#1835885
c29fdf
c29fdf
- stats: Add basic schedule-miss stats to needle (rhbz#1835885)
c29fdf
- merge upstream commit 274fda334a84253222e01b779349784ec552921b (rhbz#1835885)
c29fdf
- main: Add schedmiss timestamp into message (rhbz#1835885)
c29fdf
- merge upstream commit 3166a87749fa4817d90ed335f3c5843fc38e7304 (rhbz#1835885)
c29fdf
c29fdf
* Tue Mar 24 2020 Jan Friesse <jfriesse@redhat.com> 2.4.5-5
c29fdf
- Resolves: rhbz#1679792
c29fdf
- Resolves: rhbz#1780134
c29fdf
c29fdf
- votequorum: Ignore the icmap_get_* return value (rhbz#1780134)
c29fdf
- merge upstream commit 8ad3c6bbb4556332c5a6b7fecdab73310c045b24 (rhbz#1780134)
c29fdf
- votequorum: Reflect runtime change of 2Node to WFA (rhbz#1780134)
c29fdf
- merge upstream commit bfbed8c320b0c0c5d3db48630f3de77e5fd62b75 (rhbz#1780134)
c29fdf
- votequorum: set wfa status only on startup (rhbz#1679792)
c29fdf
- merge upstream commit 6894792d76b1e8932bc822bb040933ae17e1a0c7 (rhbz#1679792)
c29fdf
8690b7
* Wed Aug 07 2019 Jan Friesse <jfriesse@redhat.com> - 2.4.5-4
8690b7
- Related: rhbz#1737884
8690b7
8690b7
- Enhance spausedd makefile
8690b7
8690b7
* Tue Aug 06 2019 Jan Friesse <jfriesse@redhat.com> - 2.4.5-3
8690b7
- Resolves: rhbz#1737884
8690b7
- Resolves: rhbz#1737887
4d7117
4d7117
- Do not set exec permission for service file
4d7117
- Fix CFLAGS definition
4d7117
8690b7
* Tue Jul 30 2019 Jan Friesse <jfriesse@redhat.com> 2.4.5-2
8690b7
- Resolves: rhbz#1656492
8690b7
8690b7
- totem: Increase ring_id seq after load (rhbz#1656492)
8690b7
- merge upstream commit 1061804d09565363aba73e369faf310a7d2c4d86 (rhbz#1656492)
8690b7
8690b7
* Tue Jul 30 2019 Jan Friesse <jfriesse@redhat.com> 2.4.5-1
8690b7
- Resolves: rhbz#1732039
8690b7
- Resolves: rhbz#1153818
8690b7
- Resolves: rhbz#1647120
8690b7
8690b7
- Rebase to Corosync 2.4.5
8690b7
478375
* Thu Mar 21 2019 Jan Friesse <jfriesse@redhat.com> 2.4.3-6
478375
- Resolves: rhbz#1542703
478375
478375
- Add spausedd subpackage
478375
478375
* Thu Mar 21 2019 Jan Friesse <jfriesse@redhat.com> 2.4.3-5
478375
- Resolves: rhbz#1376819
478375
- Resolves: rhbz#1634710
478375
478375
- configure: add --with-initconfigdir option (rhbz#1376819)
478375
- merge upstream commit c0d8af0c7b247df16a90850b0edab4f978cb8192 (rhbz#1376819)
478375
- Use RuntimeDirectory instead of tmpfiles.d (rhbz#1376819)
478375
- merge upstream commit fde7fa0c6408709ccdd090aa9064e6a78232498a (rhbz#1376819)
478375
- totemcrypto: Fix importing of the private key (rhbz#1634710)
478375
- merge upstream commit 3f3e6b62719a263cb221c19a06d9a2c570234caa (rhbz#1634710)
478375
- qnetd: Check existence of NSS DB dir before fork (rhbz#1376819)
478375
- merge upstream commit eac28dffdf7f060f41f2b2e95bb0f4c6c033425d (rhbz#1376819)
478375
493941
* Tue Apr 17 2018 Jan Friesse <jfriesse@redhat.com> 2.4.3-4
493941
- Resolves: rhbz#1422598
493941
493941
- Enable aarch64 build (bz#1422598)
493941
493941
* Fri Apr 06 2018 Jan Friesse <jfriesse@redhat.com> 2.4.3-3
493941
- Resolves: rhbz#1560468
6d54af
6d54af
- totemcrypto: Check length of the packet
6d54af
b69418
* Mon Feb 05 2018 Jan Friesse <jfriesse@redhat.com> 2.4.3-2
b69418
- Resolves: rhbz#1536219
b69418
b69418
- logging: Make blackbox configurable (rhbz#1536219)
b69418
- merge upstream commit 8af39f66e56e319b6b93804c0400e6e29737a90f (rhbz#1536219)
b69418
- logging: Close before and open blackbox after fork (rhbz#1536219)
b69418
- merge upstream commit 995ed0bd814ff3eacf6c09534841e6ce39ab6614 (rhbz#1536219)
b69418
b69418
* Fri Oct 20 2017 Jan Friesse <jfriesse@redhat.com> 2.4.3-1
b69418
- Resolves: rhbz#1413573
b69418
- Resolves: rhbz#1503008
b69418
b69418
* Tue Oct 17 2017 Jan Friesse <jfriesse@redhat.com> 2.4.0-10
b69418
- Resolves: rhbz#1439205
b69418
- Resolves: rhbz#1461450
b69418
- Resolves: rhbz#1469170
b69418
- Resolves: rhbz#1476214
b69418
b69418
- main: Don't ask libqb to handle segv, it doesn't work (rhbz#1439205)
b69418
- merge upstream commit c0da36a6c0ecf7bc7def252a06336a7088e68086 (rhbz#1439205)
b69418
- totem: Propagate totem initialization failure (rhbz#1461450)
b69418
- merge upstream commit 0413a8f4672352171f0df731b7d9c1fe20acbc4c (rhbz#1461450)
b69418
- totemcrypto: Refactor symmetric key importing (rhbz#1461450)
b69418
- merge upstream commit a885868181c07ba9ab5cdfdad1d66d387b2a4428 (rhbz#1461450)
b69418
- totemcrypto: Use different method to import key (rhbz#1461450)
b69418
- merge upstream commit 5dadebd21862074deaeb9a337fc9e49f5e9f692a (rhbz#1461450)
b69418
- main: Add option to set priority (rhbz#1469170)
b69418
- merge upstream commit a008448efb2b1d45c432867caf08f0bcf2b4b9b0 (rhbz#1469170)
b69418
- main: Add support for libcgroup (rhbz#1476214)
b69418
- merge upstream commit c56086c701d08fc17cf6d8ef603caf505a4021b7 (rhbz#1476214)
b69418
- totemcrypto: Fix compiler warning (rhbz#1461450)
b69418
- merge upstream commit fdeed33f514e0056e322a45d9a0a04ca4b9a2709 (rhbz#1461450)
df4b1e
3062ca
* Wed Apr 26 2017 Jan Friesse <jfriesse@redhat.com> 2.4.0-9
3062ca
- Resolves: rhbz#1445001
3062ca
3062ca
- Main: Call mlockall after fork (rhbz#1445001)
3062ca
- merge upstream commit 238e2e62d8b960e7c10bfa0a8281d78ec99f3a26 (rhbz#1445001)
3062ca
- Disable aarch64 build (bz#1422598)
3062ca
3062ca
* Wed Mar 22 2017 Jan Friesse <jfriesse@redhat.com> 2.4.0-8
3062ca
- Resolves: rhbz#1434528
3062ca
- Resolves: rhbz#1434529
3062ca
- Resolves: rhbz#1434534
3062ca
3062ca
- cfg: Prevents use of uninitialized buffer (rhbz#1434528)
3062ca
- merge upstream commit 52e6ae57ea06d0bef61c5c9250881bef1372ead2 (rhbz#1434528)
3062ca
- man: Fix typos in man page (rhbz#1434529)
3062ca
- merge upstream commit b642904ea9640bd7a1573a8c0d2c5bcb43a10dfc (rhbz#1434529)
3062ca
- Fix typo: Destorying -> Destroying (rhbz#1434529)
3062ca
- merge upstream commit 117d9e4eb77ef9941fdeaf17ddfd892514da8143 (rhbz#1434529)
3062ca
- init: Add doc URIs to the systemd service files (rhbz#1434529)
3062ca
- merge upstream commit 21a728785027483786e41c19f6aff57a95b80aa5 (rhbz#1434529)
3062ca
- man: Modify man-page according to command usage (rhbz#1434529)
3062ca
- merge upstream commit 79898e8cb1715e79b7467b91661b7341e2664550 (rhbz#1434529)
3062ca
- Totempg: remove duplicate memcpy in mcast_msg func (rhbz#1434528)
3062ca
- merge upstream commit 4a8e9d80409590cb42732ae3105b5ae71fda52c1 (rhbz#1434528)
3062ca
- upstart: Add softdog module loading example (rhbz#1434529)
3062ca
- merge upstream commit 75474d69bebea6c9c4ef2252476ce738cf92f0f4 (rhbz#1434529)
3062ca
- Remove deprecated doxygen flags (rhbz#1434529)
3062ca
- merge upstream commit b252013e42007ea7284ae54d035a30ca40f20fc0 (rhbz#1434529)
3062ca
- Remove redundant header file inclusion (rhbz#1434528)
3062ca
- merge upstream commit d6c7ade277a4a23d84c56d7fde6b60b377a1023b (rhbz#1434528)
3062ca
- Qdevice: fix spell errors in qdevice (rhbz#1434529)
3062ca
- merge upstream commit d9caa09c45d4560c89a1ad873087c0476cabab46 (rhbz#1434529)
3062ca
- doc: document watchdog_device parameter (rhbz#1434529)
3062ca
- merge upstream commit a5f97ae1b99063383d8f45168125b34232b91faf (rhbz#1434529)
3062ca
- Logsys: Change logsys syslog_priority priority (rhbz#1434534)
3062ca
- merge upstream commit 609cc0cc100aa1070d97b405273373682da0e270 (rhbz#1434534)
3062ca
- logconfig: Do not overwrite logger_subsys priority (rhbz#1434534)
3062ca
- merge upstream commit c866a2f8603b44e89eb21a6cf7d88134af2e8b66 (rhbz#1434534)
3062ca
3062ca
* Tue Mar 21 2017 Jan Friesse <jfriesse@redhat.com> 2.4.0-7
3062ca
- Related: rhbz#1371880
3062ca
3062ca
- Fix build on RHEL7.3 latest (rhbz#1371880)
3062ca
- merge upstream commit 19e48a6eee20d5f34f79a3b8d4e1c694169c1d7b (rhbz#1371880)
3062ca
- Enable aarch64 build (bz#1422598)
3062ca
3062ca
* Tue Mar 21 2017 Jan Friesse <jfriesse@redhat.com> 2.4.0-6
3062ca
- Resolves: rhbz#1371880
3062ca
3062ca
- libvotequorum: Bump version (rhbz#1371880)
3062ca
- merge upstream commit 96f91f23a6a413535cc2f0e8492e2300373fed40 (rhbz#1371880)
3062ca
- votequorum: Don't update expected_votes display if value is too high (rhbz#1371880)
3062ca
- merge upstream commit 596433066805af029be1292a37a35ce31307f0bf (rhbz#1371880)
3062ca
- votequorum: simplify reconfigure message handling (rhbz#1371880)
3062ca
- merge upstream commit 4a385f2e94c7168dbd92168c54a80ee97a3c2140 (rhbz#1371880)
3062ca
3062ca
* Thu Jan 19 2017 Jan Friesse <jfriesse@redhat.com> 2.4.0-5
3062ca
- Resolves: rhbz#1289661
3062ca
3062ca
- Enable ppc64le build
3062ca
8b462f
* Wed Aug 31 2016 Jan Friesse <jfriesse@redhat.com> 2.4.0-4
8b462f
- Resolves: rhbz#1367813
8b462f
8b462f
- Man: Fix corosync-qdevice-net-certutil link (rhbz#1367813)
8b462f
- merge upstream commit 49a9f722bba13e4b2762151b7b96b1d4196fd5e0 (rhbz#1367813)
8b462f
- man: mention qdevice incompatibilites in votequorum.5 (rhbz#1367813)
8b462f
- merge upstream commit 0da1b7446239424b76b1d5eb7c3640afce9b054e (rhbz#1367813)
8b462f
- Qnetd LMS: Fix two partition use case (rhbz#1367813)
8b462f
- merge upstream commit b0c850f308d44ddcdf1a1f881c1e1142ad489385 (rhbz#1367813)
8b462f
8b462f
* Thu Aug 04 2016 Jan Friesse <jfriesse@redhat.com> 2.4.0-3
8b462f
- Related: rhbz#1363654
8b462f
8b462f
- Enhance spec so corosync-qdevice subpackage depends on same version of
8b462f
  the corosync and corosynclib packages.
8b462f
8b462f
* Thu Aug 04 2016 Jan Friesse <jfriesse@redhat.com> 2.4.0-2
8b462f
- Resolves: rhbz#1363654
8b462f
8b462f
- Config: Flag config uidgid entries (rhbz#1363654)
8b462f
- merge upstream commit f837f95dfe96d60f2367e900efd4def7a07b2a89 (rhbz#1363654)
8b462f
8b462f
* Thu Jun 30 2016 Jan Friesse <jfriesse@redhat.com> 2.4.0-1
8b462f
- Resolves: rhbz#614122
8b462f
- Resolves: rhbz#1185000
8b462f
- Resolves: rhbz#1306680
8b462f
8b462f
* Thu Jun 16 2016 Jan Friesse <jfriesse@redhat.com> 2.3.6-1
8b462f
- Related: rhbz#1306680
8b462f
- Resolves: rhbz#1289169
8b462f
- Resolves: rhbz#1306349
8b462f
- Resolves: rhbz#1282372
8b462f
- Resolves: rhbz#1317573
8b462f
- Resolves: rhbz#1336462
8b462f
8b462f
- Rebase to Corosync 2.3.6
5896ea
f1cb04
* Mon Jun 22 2015 Jan Friesse <jfriesse@redhat.com> 2.3.4-7
f1cb04
- Related: rhbz#682771
f1cb04
f1cb04
- Don't link with libz when not needed (rhbz#682771)
f1cb04
- merge upstream commit 145f9279d12cf0b981494bbd4dabbc9c3641378e (rhbz#682771)
f1cb04
f1cb04
* Mon Jun 22 2015 Jan Friesse <jfriesse@redhat.com> 2.3.4-6
f1cb04
- Resolves: rhbz#1170347
f1cb04
- Resolves: rhbz#1225441
f1cb04
- Resolves: rhbz#1226842
f1cb04
- Resolves: rhbz#1229194
f1cb04
- Resolves: rhbz#1234261
f1cb04
- Resolves: rhbz#1234266
f1cb04
- Resolves: rhbz#682771
f1cb04
- Resolves: rhbz#773464
f1cb04
f1cb04
- config: Make sure user doesn't mix IPv6 and IPv4 (rhbz#773464)
f1cb04
- merge upstream commit 6c028d4d9c53decaa9469c792ac68fd2a886e7d9 (rhbz#773464)
f1cb04
- config: Process broadcast option consistently (rhbz#773464)
f1cb04
- merge upstream commit 70bd35fc06e68a010d780dfa39bd68d4bd2f7da7 (rhbz#773464)
f1cb04
- config: Ensure mcast address/port differs for rrp (rhbz#773464)
f1cb04
- merge upstream commit 6449bea835c90045baa23e3e041fed1df2abf070 (rhbz#773464)
f1cb04
- Reset timer_problem_decrementer on fault (rhbz#1234261)
f1cb04
- merge upstream commit 8f284b26b3331e1ab252969ba65543e6d9217ab1 (rhbz#1234261)
f1cb04
- automake: Check minimum automake version (rhbz#773464)
f1cb04
- merge upstream commit 114b826c67126fe1f690ad976b5217a8487994a4 (rhbz#773464)
f1cb04
- Set RR priority by default (rhbz#1170347)
f1cb04
- merge upstream commit 177ef0e5240b4060ff5b14eab6f2eefee3aa777d (rhbz#1170347)
f1cb04
- Log auto-recovery of ring only once (rhbz#773464)
f1cb04
- merge upstream commit e0ac861efdc32831366a2b5f5cc1d61e2ffa5504 (rhbz#773464)
f1cb04
- totem: Ignore duplicated commit tokens in recovery (rhbz#1234261)
f1cb04
- merge upstream commit 4ee84c51fa73c4ec7cbee922111a140a3aaf75df (rhbz#1234261)
f1cb04
- corosync_ring_id_store: Use safer permissions (rhbz#1234266)
f1cb04
- merge upstream commit 252b38ab8a62ff083e83b1d6f514109f7b7cbb42 (rhbz#1234266)
f1cb04
- totemsrp: Format member list log as unsigned int (rhbz#773464)
f1cb04
- merge upstream commit 5d9acc5604eb4e8a739cb37a4ad46bcc5ad8deb6 (rhbz#773464)
f1cb04
- cpg: Add support for messages larger than 1Mb (rhbz#682771)
f1cb04
- merge upstream commit 8cc8e513633a1a8b12c416e32fb5362fcf4d65dd (rhbz#682771)
f1cb04
- Really add cpghum (rhbz#682771)
f1cb04
- merge upstream commit 3842ba6080e00fd9484a2a875d982e149f67bc44 (rhbz#682771)
f1cb04
- quorum: don't allow quorum_trackstart to be called twice (rhbz#1229194)
f1cb04
- merge upstream commit 82526d2fe9137e8b604f1bbae6d6e39ba41377f9 (rhbz#1229194)
f1cb04
- totemconfig: Check for duplicate nodeids (rhbz#773464)
f1cb04
- merge upstream commit 997074cc3e1ea425ca63e453b7e2181741bdcef0 (rhbz#773464)
f1cb04
- totem: Log a message if JOIN or LEAVE message is ignored (rhbz#773464)
f1cb04
- merge upstream commit 53f67a2a7914228f1a406aad61ea6768525e11b0 (rhbz#773464)
f1cb04
- totemsrp: Improve logging of left/down nodes (rhbz#773464)
f1cb04
- merge upstream commit ab8942f6260fde93824ed2a18e09e572b59ceb25 (rhbz#773464)
f1cb04
- votequorum: Fix auto_tie_breaker behaviour in odd-sized clusters (rhbz#1229194)
f1cb04
- merge upstream commit b9f5c290b7dedd0a677cdfc25db7dd111245a745 (rhbz#1229194)
f1cb04
- Add note about rrp active beeing unsupported (rhbz#1226842)
f1cb04
- merge upstream commit 219965f4fe694eaaf2eb4ea05cdc7e35f5146114 (rhbz#1226842)
f1cb04
- Log: Add logrotate configuration file (rhbz#1225441)
f1cb04
- merge upstream commit aabbace625b3c68332b4356887378fca81f8f387 (rhbz#1225441)
f1cb04
f1cb04
* Wed Mar 25 2015 Jan Friesse <jfriesse@redhat.com> 2.3.4-5
f1cb04
- Resolves: rhbz#1197091
f1cb04
- Resolves: rhbz#1197671
f1cb04
f1cb04
- Votequorum: Fix auto_tie_breaker default (rhbz#1197091)
f1cb04
- merge upstream commit 314a01c98e5f98ff686333966dbe675935b7b6a8 (rhbz#1197091)
f1cb04
- Don't allow both two_node and auto_tie_breaker in corosync.conf (rhbz#1197671)
f1cb04
- merge upstream commit c832ade034fa737561ccabefbe417c9d7855d970 (rhbz#1197671)
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.