6a7e4c
%bcond_without snmp
6a7e4c
%bcond_without vrrp
6a7e4c
%bcond_without sha1
6a7e4c
%bcond_with iptables
6a7e4c
%bcond_with profile
6a7e4c
%bcond_with debug
6a7e4c
6a7e4c
%global _hardened_build 1
6a7e4c
6a7e4c
Name: keepalived
6a7e4c
Summary: High Availability monitor built upon LVS, VRRP and service pollers
a0b13a
Version: 2.1.5
65100f
Release: 9%{?dist}
6a7e4c
License: GPLv2+
6a7e4c
URL: http://www.keepalived.org/
6a7e4c
Group: System Environment/Daemons
6a7e4c
6a7e4c
Source0: http://www.keepalived.org/software/keepalived-%{version}.tar.gz
6a7e4c
Source1: keepalived.service
6a7e4c
388d42
Patch1: bz1977716-revert-explicit-set-LOG_USER-facility.patch
388d42
Patch2: bz1977716-use-LOG_DAEMON-facility-by-default.patch
388d42
Patch3: bz2028350-fix-dbus-policy-restrictions.patch
65100f
Patch4: bz2054249-fix-unweighted-track-scripts.patch
388d42
6a7e4c
Requires(post): systemd
6a7e4c
Requires(preun): systemd
6a7e4c
Requires(postun): systemd
6a7e4c
6a7e4c
%if %{with snmp}
6a7e4c
BuildRequires: net-snmp-devel
6a7e4c
%endif
6a7e4c
%if %{with iptables}
6a7e4c
BuildRequires: ipset-devel
6a7e4c
BuildRequires: iptables-devel
6a7e4c
%endif
6a7e4c
BuildRequires: gcc
6a7e4c
BuildRequires: automake
6a7e4c
BuildRequires: systemd-units
6a7e4c
BuildRequires: openssl-devel
6a7e4c
BuildRequires: libnl3-devel
6a7e4c
BuildRequires: libnfnetlink-devel
6a7e4c
6a7e4c
%description
6a7e4c
Keepalived provides simple and robust facilities for load balancing
6a7e4c
and high availability to Linux system and Linux based infrastructures.
6a7e4c
The load balancing framework relies on well-known and widely used
6a7e4c
Linux Virtual Server (IPVS) kernel module providing Layer4 load
6a7e4c
balancing. Keepalived implements a set of checkers to dynamically and
6a7e4c
adaptively maintain and manage load-balanced server pool according
6a7e4c
their health. High availability is achieved by VRRP protocol. VRRP is
6a7e4c
a fundamental brick for router failover. In addition, keepalived
6a7e4c
implements a set of hooks to the VRRP finite state machine providing
6a7e4c
low-level and high-speed protocol interactions. Keepalived frameworks
6a7e4c
can be used independently or all together to provide resilient
6a7e4c
infrastructures.
6a7e4c
6a7e4c
%prep
6a7e4c
%setup -q
388d42
%patch1 -p1
388d42
%patch2 -p1
388d42
%patch3 -p1
65100f
%patch4 -p1
6a7e4c
6a7e4c
%build
6a7e4c
%configure \
6a7e4c
    %{?with_debug:--enable-debug} \
6a7e4c
    %{?with_profile:--enable-profile} \
6a7e4c
    %{!?with_vrrp:--disable-vrrp} \
6a7e4c
    %{!?with_iptables:--disable-libiptc --disable-ipset} \
6a7e4c
    %{?with_snmp:--enable-snmp --enable-snmp-rfc} \
6a7e4c
    %{?with_sha1:--enable-sha1} \
6a7e4c
    --with-init=systemd
6a7e4c
%{__make} %{?_smp_mflags} STRIP=/bin/true
6a7e4c
6a7e4c
%install
6a7e4c
rm -rf %{buildroot}
6a7e4c
make install DESTDIR=%{buildroot}
6a7e4c
rm -rf %{buildroot}%{_initrddir}/
6a7e4c
rm -rf %{buildroot}%{_sysconfdir}/keepalived/samples/
6a7e4c
%{__install} -p -D -m 0644 %{SOURCE1} %{buildroot}%{_unitdir}/keepalived.service
6a7e4c
mkdir -p %{buildroot}%{_libexecdir}/keepalived
6a7e4c
6a7e4c
%post
6a7e4c
%systemd_post keepalived.service
6a7e4c
6a7e4c
%preun
6a7e4c
%systemd_preun keepalived.service
6a7e4c
6a7e4c
%postun
6a7e4c
%systemd_postun_with_restart keepalived.service
6a7e4c
6a7e4c
%files
6a7e4c
%defattr(-,root,root,-)
6a7e4c
%attr(0755,root,root) %{_sbindir}/keepalived
6a7e4c
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/sysconfig/keepalived
6a7e4c
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/keepalived/keepalived.conf
6a7e4c
%doc AUTHOR ChangeLog CONTRIBUTORS COPYING README TODO
6a7e4c
%doc doc/keepalived.conf.SYNOPSIS doc/samples/keepalived.conf.*
6a7e4c
%dir %{_sysconfdir}/keepalived/
6a7e4c
%dir %{_libexecdir}/keepalived/
6a7e4c
%if %{with snmp}
6a7e4c
%{_datadir}/snmp/mibs/KEEPALIVED-MIB.txt
6a7e4c
%{_datadir}/snmp/mibs/VRRP-MIB.txt
6a7e4c
%{_datadir}/snmp/mibs/VRRPv3-MIB.txt
6a7e4c
%endif
6a7e4c
%{_bindir}/genhash
6a7e4c
%{_unitdir}/keepalived.service
6a7e4c
%{_mandir}/man1/genhash.1*
6a7e4c
%{_mandir}/man5/keepalived.conf.5*
6a7e4c
%{_mandir}/man8/keepalived.8*
6a7e4c
6a7e4c
%changelog
65100f
* Thu Jul 21 2022 Ryan O'Hara <rohara@redhat.com> - 2.1.5-9
65100f
- Fix removal of unweighted track scripts from sync group (#2054249)
65100f
388d42
* Tue Jan 18 2022 Ryan O'Hara <rohara@redhat.com> - 2.1.5-8
388d42
- Fix DBus policy restrictions (#2028350, CVE-2021-44225)
388d42
388d42
* Fri Oct 29 2021 Ryan O'Hara <rohara@redhat.com> - 2.1.5-7
388d42
- Fix log-facility option (#197716)
388d42
a0b13a
* Tue Dec 15 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.5-6
a0b13a
- Fix changelog
e9e3f4
a0b13a
* Tue Oct 20 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.5-5
a0b13a
- Update to 2.1.5 (#1889440)
a0b13a
- Fix intermittent child lost messages (#1868077)
a0b13a
	
f94c16
* Tue Jun 16 2020 Ryan O'Hara <rohara@redhat.com> - 2.0.10-11
f94c16
- Fix vrrp_script execution (#1683438)
f94c16
6a7e4c
* Mon Feb 24 2020 Ryan O'Hara <rohara@redhat.com> - 2.0.10-10
6a7e4c
- Disable libiptc/ipset (#1806642)
6a7e4c
6a7e4c
* Thu Jan 30 2020 Ryan O'Hara <rohara@redhat.com> - 2.0.10-9
6a7e4c
- Fix FAULT state when interface is renamed (#1792160)
6a7e4c
6a7e4c
* Mon Jul 08 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.10-7
6a7e4c
- Add gating tests (#1682114)
6a7e4c
6a7e4c
* Wed May 01 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.10-6
6a7e4c
- Fix segfault when smtp alerts configured (#1693706)
6a7e4c
- Fix double free when smtp_helo_name copied from local_name (#1693706)
6a7e4c
6a7e4c
* Wed Mar 27 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.10-5
6a7e4c
- Bump release nummber (#1688892)
6a7e4c
6a7e4c
* Mon Mar 18 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.10-3
6a7e4c
- Rework fix for OpenSSL initialization segfault (#1688892)
6a7e4c
6a7e4c
* Fri Mar 15 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.10-2
6a7e4c
- Fix OpenSSL initialization segfault (#1688892)
6a7e4c
6a7e4c
* Mon Nov 26 2018 Ryan O'Hara <rohara@redhat.com> - 2.0.10-1
6a7e4c
- Update to 2.0.10 (#1631816)
6a7e4c
6a7e4c
* Mon Oct 08 2018 Ryan O'Hara <rohara@redhat.com> - 2.0.7-2
6a7e4c
- Remove BuildRequires for ipset-devel
6a7e4c
6a7e4c
* Tue Oct 02 2018 Ryan O'Hara <rohara@redhat.com> - 2.0.7-1
6a7e4c
- Update to 2.0.7 (#1631816)
6a7e4c
6a7e4c
* Thu Aug 09 2018 Josef Ridky <jridky@redhat.com> - 2.0.6-2
6a7e4c
- Rebuild for Net-SNMP
6a7e4c
6a7e4c
* Wed Jul 25 2018 Ryan O'Hara <rohara@redhat.com> - 2.0.6-1
6a7e4c
- Update to 2.0.6
6a7e4c
6a7e4c
* Tue Jul 03 2018 Ryan O'Hara <rohara@redhat.com> - 2.0.5-1
6a7e4c
- Update to 2.0.5
6a7e4c
6a7e4c
* Thu Apr 19 2018 Ryan O'Hara <rohara@redhat.com> - 1.4.3-1
6a7e4c
- Update to 1.4.3 (#1565388)
6a7e4c
6a7e4c
* Wed Mar 07 2018 Ryan O'Hara <rohara@redhat.com> - 1.4.2-1
6a7e4c
- Update to 1.4.2 (#1539269)
6a7e4c
6a7e4c
* Mon Jan 29 2018 Ryan O'Hara <rohara@redhat.com> - 1.4.1-1
6a7e4c
- Update to 1.4.1 (#1539269)
6a7e4c
6a7e4c
* Fri Jan 05 2018 Ryan O'Hara <rohara@redhat.com> - 1.4.0-1
6a7e4c
- Update to 1.4.0 (#1529802)
6a7e4c
6a7e4c
* Wed Oct 25 2017 Ryan O'Hara <rohara@redhat.com> - 1.3.9-1
6a7e4c
- Update to 1.3.9 (#1497576)
6a7e4c
6a7e4c
* Mon Sep 11 2017 Ryan O'Hara <rohara@redhat.com> - 1.3.6-1
6a7e4c
- Update to 1.3.6 (#1481471)
6a7e4c
6a7e4c
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-3
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
6a7e4c
6a7e4c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-2
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6a7e4c
6a7e4c
* Sun Mar 26 2017 Ryan O'Hara <rohara@redhat.com> - 1.3.5-1
6a7e4c
- Update to 1.3.5 (#1422063)
6a7e4c
6a7e4c
* Sun Feb 05 2017 Kalev Lember <klember@redhat.com> - 1.3.2-2
6a7e4c
- Rebuilt for libxtables soname bump
6a7e4c
6a7e4c
* Mon Nov 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.3.2-1
6a7e4c
- Update to 1.3.2 (#1396857)
6a7e4c
6a7e4c
* Fri Sep 16 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.24-3
6a7e4c
- Add BuildRequires for iptables-devel (#1361686)
6a7e4c
6a7e4c
* Fri Sep 16 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.24-2
6a7e4c
- Fix configure script
6a7e4c
6a7e4c
* Thu Sep 15 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.24-1
6a7e4c
- Update to 1.2.24 (#1376254)
6a7e4c
6a7e4c
* Wed Jul 13 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.23-1
6a7e4c
- Update to 1.2.23 (#1354696)
6a7e4c
6a7e4c
* Wed Jun 15 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.22-1
6a7e4c
- Update to 1.2.22 (#1346509)
6a7e4c
6a7e4c
* Tue Jun 14 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.21-3
6a7e4c
- Remove net-snmp U64 typedef
6a7e4c
6a7e4c
* Fri Jun 03 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.21-2
6a7e4c
- Remove unnecessary BuildRequires (#1327873)
6a7e4c
6a7e4c
* Fri Jun 03 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.21-1
6a7e4c
- Update to 1.2.21 (#1341372)
6a7e4c
6a7e4c
* Sun Apr 10 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.20-2
6a7e4c
- Install VRRP MIB
6a7e4c
6a7e4c
* Mon Apr 04 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.20-1
6a7e4c
- Update to 1.2.20 (#1323526)
6a7e4c
6a7e4c
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.19-4
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6a7e4c
6a7e4c
* Sat Jan 23 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.19-3
6a7e4c
- Add PIDFile to systemd unit file (#1280437)
6a7e4c
6a7e4c
* Wed Jul 29 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.2.19-2
6a7e4c
- Rebuilt for rpm 4.12.90
6a7e4c
6a7e4c
* Wed Jul 15 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.19-1
6a7e4c
- Update to 1.2.19 (#1240863)
6a7e4c
6a7e4c
* Wed Jul 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.18-1
6a7e4c
- Update to 1.2.18 (#1237377)
6a7e4c
6a7e4c
* Tue Jun 23 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.17-5
6a7e4c
- Revert patch that changed VRRP notify scripts to list (#1232073)
6a7e4c
6a7e4c
* Wed Jun 17 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.17-4
6a7e4c
- Fix multiple VRRP instances with same interface (#1232408)
6a7e4c
6a7e4c
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.17-3
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
6a7e4c
6a7e4c
* Mon Jun 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.17-2
6a7e4c
- Add VRRP MIB file
6a7e4c
6a7e4c
* Mon Jun 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.17-1
6a7e4c
- Update to 1.2.17
6a7e4c
6a7e4c
* Wed Apr 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.16-1
6a7e4c
- Update to 1.2.16
6a7e4c
6a7e4c
* Wed Mar 18 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.15-3
6a7e4c
- Revert previous preempt extension (#1202584)
6a7e4c
6a7e4c
* Tue Jan 13 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.15-2
6a7e4c
- Depend on network-online.target systemd unit (#1181097)
6a7e4c
6a7e4c
* Tue Dec 23 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.15-1
6a7e4c
- Update to 1.2.15
6a7e4c
6a7e4c
* Tue Dec 16 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.14-1
6a7e4c
- Update to 1.2.14
6a7e4c
6a7e4c
* Tue Oct 28 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.13-4
6a7e4c
- Create /usr/libexec/keepalived directory (#1158113)
6a7e4c
6a7e4c
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.13-3
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
6a7e4c
6a7e4c
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.13-2
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
6a7e4c
6a7e4c
* Tue May 13 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.13-1
6a7e4c
- Update to 1.2.13
6a7e4c
6a7e4c
* Mon Feb 10 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.12-1
6a7e4c
- Update to 1.2.12
6a7e4c
6a7e4c
* Mon Feb 03 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.11-1
6a7e4c
- Update to 1.2.11
6a7e4c
6a7e4c
* Mon Jan 13 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.10-1
6a7e4c
- Update to 1.2.10
6a7e4c
6a7e4c
* Mon Nov 11 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.9-1
6a7e4c
- Update to 1.2.9.
6a7e4c
6a7e4c
* Thu Sep 19 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.8-2
6a7e4c
- Bump release and rebuild.
6a7e4c
6a7e4c
* Thu Sep 05 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.8-1
6a7e4c
- Update to 1.2.8.
6a7e4c
6a7e4c
* Mon Aug 19 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-10
6a7e4c
- Add To header for SMTP alerts (#967641)
6a7e4c
6a7e4c
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.7-9
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
6a7e4c
6a7e4c
* Mon Jul 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-8
6a7e4c
- Fix macro in keepalived.conf.5 man page.
6a7e4c
6a7e4c
* Mon Jul 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-7
6a7e4c
- Fix systemd requirements.
6a7e4c
6a7e4c
* Mon Jul 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-6
6a7e4c
- Install the systemd unit file, not the init script.
6a7e4c
6a7e4c
* Mon Apr 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-5
6a7e4c
- Build with PIE flags (#955150)
6a7e4c
6a7e4c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.7-4
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
6a7e4c
6a7e4c
* Wed Jan 2 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-3
6a7e4c
- Update spec file.
6a7e4c
- Add option to prevent respawn of child processes.
6a7e4c
- Remove duplicate command-line option code.
6a7e4c
- Use popt to generate usage message.
6a7e4c
- Fix pointer arithmetic for VRRP packets.
6a7e4c
- Fix comparison of primary IP address.
6a7e4c
- Fix loading of SSL certificate.
6a7e4c
- Fix typo in error message.
6a7e4c
- Update FSF address in GPLv2 license.
6a7e4c
- Remove debug message from if_get_by_ifname.
6a7e4c
6a7e4c
* Mon Sep 24 2012 Václav Pavlín <vpavlin@redhat.com> - 1.2.7-2
6a7e4c
- Scriptlets replaced with new systemd macros (#850173).
6a7e4c
6a7e4c
* Tue Sep 04 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.7-1
6a7e4c
- Update to 1.2.7.
6a7e4c
- Fix systemd service file (#769726).
6a7e4c
6a7e4c
* Mon Aug 20 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.6-1
6a7e4c
- Update to 1.2.6.
6a7e4c
6a7e4c
* Tue Aug 14 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.5-2
6a7e4c
- Install KEEPALIVED-MIB as KEEPALIVED-MIB.txt.
6a7e4c
6a7e4c
* Mon Aug 13 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.5-1
6a7e4c
- Update to 1.2.5.
6a7e4c
6a7e4c
* Wed Aug 01 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.4-1
6a7e4c
- Update to 1.2.4.
6a7e4c
6a7e4c
* Mon Jul 23 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.3-1
6a7e4c
- Update to 1.2.3.
6a7e4c
6a7e4c
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-6
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
6a7e4c
6a7e4c
* Tue May 08 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.2-5
6a7e4c
- Fix IPv4 address comparison (#768119).
6a7e4c
6a7e4c
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-4
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
6a7e4c
6a7e4c
* Mon Sep 19 2011 Tom Callaway <spot@fedoraproject.org> - 1.2.2-3
6a7e4c
- convert to systemd
6a7e4c
- fix ip_vs.h path searching in configure
6a7e4c
6a7e4c
* Tue Jul 12 2011 Matthias Saou <http://freshrpms.net/> 1.2.2-2
6a7e4c
- Build against libnl for Fedora. RHEL's libnl is too old.
6a7e4c
6a7e4c
* Sat May 21 2011 Matthias Saou <http://freshrpms.net/> 1.2.2-1
6a7e4c
- Update to 1.2.2.
6a7e4c
6a7e4c
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.20-3
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
6a7e4c
6a7e4c
* Sun Jan 16 2011 Dan Horák <dan[at]danny.cz> 1.1.20-2
6a7e4c
- exclude arches where we don't provide 32-bit kernel
6a7e4c
6a7e4c
* Tue Jan 11 2011 Matthias Saou <http://freshrpms.net/> 1.2.1-1
6a7e4c
- Update to 1.2.1, now with IPv6 support.
6a7e4c
6a7e4c
* Sun May 23 2010 Matthias Saou <http://freshrpms.net/> 1.1.20-1
6a7e4c
- Update to 1.1.20 (#589923).
6a7e4c
- Update BR conditional for RHEL6.
6a7e4c
- No longer include goodies/arpreset.pl, it's gone from the sources.
6a7e4c
6a7e4c
* Tue Dec  8 2009 Matthias Saou <http://freshrpms.net/> 1.1.19-3
6a7e4c
- Update init script to have keepalived start after the local MTA (#526512).
6a7e4c
- Simplify the kernel source detection, to avoid running rpm from rpmbuild.
6a7e4c
6a7e4c
* Tue Nov 24 2009 Matthias Saou <http://freshrpms.net/> 1.1.19-2
6a7e4c
- Include patch to remove obsolete -k option to modprobe (#528465).
6a7e4c
6a7e4c
* Wed Oct 21 2009 Matthias Saou <http://freshrpms.net/> 1.1.19-1
6a7e4c
- Update to 1.1.19.
6a7e4c
6a7e4c
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.1.17-3
6a7e4c
- rebuilt with new openssl
6a7e4c
6a7e4c
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.17-2
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
6a7e4c
6a7e4c
* Sun Apr 12 2009 Matthias Saou <http://freshrpms.net/> 1.1.17-1
6a7e4c
- Update to 1.1.17.
6a7e4c
- Update init script all the way.
6a7e4c
6a7e4c
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
6a7e4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
6a7e4c
6a7e4c
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> 1.1.15-7
6a7e4c
- rebuild with new openssl
6a7e4c
6a7e4c
* Mon Dec 22 2008 Matthias Saou <http://freshrpms.net/> 1.1.15-6
6a7e4c
- Fork the init script to be (mostly for now) LSB compliant (#246966).
6a7e4c
6a7e4c
* Thu Apr 24 2008 Matthias Saou <http://freshrpms.net/> 1.1.15-5
6a7e4c
- Add glob to the kerneldir location, since it contains the arch for F9+.
6a7e4c
6a7e4c
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org>
6a7e4c
- Autorebuild for GCC 4.3
6a7e4c
6a7e4c
* Wed Dec 05 2007 Release Engineering <rel-eng at fedoraproject dot org>
6a7e4c
- Rebuild for deps
6a7e4c
6a7e4c
* Mon Oct 22 2007 Matthias Saou <http://freshrpms.net/> 1.1.15-2
6a7e4c
- Update to latest upstream sources, identical except for the included spec.
6a7e4c
6a7e4c
* Mon Sep 17 2007 Matthias Saou <http://freshrpms.net/> 1.1.15-1
6a7e4c
- Update to 1.1.15.
6a7e4c
- Remove merged genhashman and include patches.
6a7e4c
6a7e4c
* Fri Sep 14 2007 Matthias Saou <http://freshrpms.net/> 1.1.14-2
6a7e4c
- Include patch from Shinji Tanaka to fix conf include from inside some
6a7e4c
  directives like vrrp_instance.
6a7e4c
6a7e4c
* Thu Sep 13 2007 Matthias Saou <http://freshrpms.net/> 1.1.14-1
6a7e4c
- Update to 1.1.14.
6a7e4c
- Remove all upstreamed patches.
6a7e4c
- Remove our init script and sysconfig files, use the same now provided by the
6a7e4c
  upstream package (will need to patch for LSB stuff soonish).
6a7e4c
- Include new goodies/arpreset.pl in %%doc.
6a7e4c
- Add missing scriplet requirements.
6a7e4c
6a7e4c
* Wed Aug 22 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-8
6a7e4c
- Rebuild for new BuildID feature.
6a7e4c
6a7e4c
* Sun Aug  5 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-7
6a7e4c
- Update License field.
6a7e4c
6a7e4c
* Mon Mar 26 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-6
6a7e4c
- Fix doc/samples/sample.misccheck.smbcheck.sh mode (600 -> 644).
6a7e4c
6a7e4c
* Thu Mar 22 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-5
6a7e4c
- Include types patch to fix compile on F7 (David Woodhouse).
6a7e4c
- Fix up file modes (main binary 700 -> 755 and config 600 -> 640).
6a7e4c
6a7e4c
* Tue Feb 13 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-4
6a7e4c
- Add missing \n to the kernel define, for when multiple kernels are installed.
6a7e4c
- Pass STRIP=/bin/true to "make" in order to get a useful debuginfo package.
6a7e4c
6a7e4c
* Tue Feb 13 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-3
6a7e4c
- Add %%check section to make sure any build without LVS support will fail.
6a7e4c
6a7e4c
* Mon Feb  5 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-2
6a7e4c
- Use our own init script, include a sysconfig entry used by it for options.
6a7e4c
6a7e4c
* Thu Jan 25 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-1
6a7e4c
- Update to 1.1.13.
6a7e4c
- Change mode of configuration file to 0600.
6a7e4c
- Don't include all of "doc" since it meant re-including all man pages.
6a7e4c
- Don't include samples in the main configuration path, they're in %%doc.
6a7e4c
- Include patch to add an optional label to interfaces.
6a7e4c
6a7e4c
* Sat Apr 08 2006 Dries Verachtert <dries@ulyssis.org> - 1.1.12-1.2
6a7e4c
- Rebuild for Fedora Core 5.
6a7e4c
6a7e4c
* Sun Mar 12 2006 Dag Wieers <dag@wieers.com> - 1.1.12-1
6a7e4c
- Updated to release 1.1.12.
6a7e4c
6a7e4c
* Fri Mar 04 2005 Dag Wieers <dag@wieers.com> - 1.1.11-1
6a7e4c
- Updated to release 1.1.11.
6a7e4c
6a7e4c
* Wed Feb 23 2005 Dag Wieers <dag@wieers.com> - 1.1.10-2
6a7e4c
- Fixed IPVS/LVS support. (Joe Sauer)
6a7e4c
6a7e4c
* Tue Feb 15 2005 Dag Wieers <dag@wieers.com> - 1.1.10-1
6a7e4c
- Updated to release 1.1.10.
6a7e4c
6a7e4c
* Mon Feb 07 2005 Dag Wieers <dag@wieers.com> - 1.1.9-1
6a7e4c
- Updated to release 1.1.9.
6a7e4c
6a7e4c
* Sun Oct 17 2004 Dag Wieers <dag@wieers.com> - 1.1.7-2
6a7e4c
- Fixes to build with kernel IPVS support. (Tim Verhoeven)
6a7e4c
6a7e4c
* Fri Sep 24 2004 Dag Wieers <dag@wieers.com> - 1.1.7-1
6a7e4c
- Updated to release 1.1.7. (Mathieu Lubrano)
6a7e4c
6a7e4c
* Mon Feb 23 2004 Dag Wieers <dag@wieers.com> - 1.1.6-0
6a7e4c
- Updated to release 1.1.6.
6a7e4c
6a7e4c
* Mon Jan 26 2004 Dag Wieers <dag@wieers.com> - 1.1.5-0
6a7e4c
- Updated to release 1.1.5.
6a7e4c
6a7e4c
* Mon Dec 29 2003 Dag Wieers <dag@wieers.com> - 1.1.4-0
6a7e4c
- Updated to release 1.1.4.
6a7e4c
6a7e4c
* Fri Jun 06 2003 Dag Wieers <dag@wieers.com> - 1.0.3-0
6a7e4c
- Initial package. (using DAR)
6a7e4c