Blame SPECS/keepalived.spec

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