95291cc
%bcond_without snmp
95291cc
%bcond_without vrrp
96cb916
%bcond_without sha1
532118f
%bcond_without json
876ddb0
%bcond_without nftables
95291cc
%bcond_with profile
95291cc
%bcond_with debug
95291cc
1b350c8
%global _hardened_build 1
1b350c8
9c34e40
Name: keepalived
95291cc
Summary: High Availability monitor built upon LVS, VRRP and service pollers
780ef64
Version: 2.2.8
4151e48
Release: 5%{?dist}
df0ff14
License: GPL-2.0-or-later
9c34e40
URL: http://www.keepalived.org/
95291cc
8cb0689
Source0: http://www.keepalived.org/software/keepalived-%{version}.tar.gz
5c6debe
Source1: keepalived.service
780ef64
#Patch0: keepalived-configure-c99.patch
95291cc
306bf7c
Requires(post): systemd
306bf7c
Requires(preun): systemd
306bf7c
Requires(postun): systemd
95291cc
95291cc
%if %{with snmp}
95291cc
BuildRequires: net-snmp-devel
95291cc
%endif
876ddb0
%if %{with nftables}
2bce224
BuildRequires: libmnl-devel
876ddb0
BuildRequires: libnftnl-devel
2bce224
%else
2bce224
BuildRequires: ipset-devel
2bce224
BuildRequires: iptables-devel
876ddb0
%endif
6f5d5e4
BuildRequires: gcc
306bf7c
BuildRequires: systemd-units
465c816
BuildRequires: systemd-devel
9c34e40
BuildRequires: openssl-devel
f84412e
BuildRequires: libnl3-devel
08f7351
BuildRequires: libnfnetlink-devel
950a4ae
BuildRequires: file-devel
aa67a09
BuildRequires: make
9c34e40
9c34e40
%description
95291cc
Keepalived provides simple and robust facilities for load balancing
95291cc
and high availability to Linux system and Linux based infrastructures.
95291cc
The load balancing framework relies on well-known and widely used
95291cc
Linux Virtual Server (IPVS) kernel module providing Layer4 load
95291cc
balancing. Keepalived implements a set of checkers to dynamically and
95291cc
adaptively maintain and manage load-balanced server pool according
95291cc
their health. High availability is achieved by VRRP protocol. VRRP is
95291cc
a fundamental brick for router failover. In addition, keepalived
95291cc
implements a set of hooks to the VRRP finite state machine providing
95291cc
low-level and high-speed protocol interactions. Keepalived frameworks
95291cc
can be used independently or all together to provide resilient
95291cc
infrastructures.
9c34e40
9c34e40
%prep
c78adb0
%autosetup -p1
c78adb0
c78adb0
# Prevent re-running autotools.
c78adb0
touch aclocal.m4 Makefile.in lib/config.h.in configure
9c34e40
9c34e40
%build
95291cc
%configure \
95291cc
    %{?with_debug:--enable-debug} \
95291cc
    %{?with_profile:--enable-profile} \
95291cc
    %{!?with_vrrp:--disable-vrrp} \
ead6a57
    %{?with_snmp:--enable-snmp --enable-snmp-rfc} \
950a4ae
    %{?with_nftables:--enable-nftables --disable-iptables} \
532118f
    %{?with_json:--enable-json} \
591faaa
    %{?with_sha1:--enable-sha1} \
591faaa
    --with-init=systemd
9c34e40
%{__make} %{?_smp_mflags} STRIP=/bin/true
9c34e40
9c34e40
%install
95291cc
rm -rf %{buildroot}
95291cc
make install DESTDIR=%{buildroot}
5c6debe
rm -rf %{buildroot}%{_initrddir}/
95291cc
rm -rf %{buildroot}%{_sysconfdir}/keepalived/samples/
ef92eda
mv %{buildroot}%{_sysconfdir}/keepalived/keepalived.conf.sample \
ef92eda
   %{buildroot}%{_sysconfdir}/keepalived/keepalived.conf
5c6debe
%{__install} -p -D -m 0644 %{SOURCE1} %{buildroot}%{_unitdir}/keepalived.service
a518763
mkdir -p %{buildroot}%{_libexecdir}/keepalived
95291cc
9c34e40
%post
8775ed7
%systemd_post keepalived.service
9c34e40
9c34e40
%preun
8775ed7
%systemd_preun keepalived.service
9c34e40
9c34e40
%postun
8775ed7
%systemd_postun_with_restart keepalived.service
9c34e40
9c34e40
%files
95291cc
%attr(0755,root,root) %{_sbindir}/keepalived
834eae6
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/sysconfig/keepalived
834eae6
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/keepalived/keepalived.conf
9c34e40
%doc AUTHOR ChangeLog CONTRIBUTORS COPYING README TODO
95291cc
%doc doc/keepalived.conf.SYNOPSIS doc/samples/keepalived.conf.*
9c34e40
%dir %{_sysconfdir}/keepalived/
a518763
%dir %{_libexecdir}/keepalived/
95291cc
%if %{with snmp}
1ea5841
%{_datadir}/snmp/mibs/KEEPALIVED-MIB.txt
1ea5841
%{_datadir}/snmp/mibs/VRRP-MIB.txt
ead6a57
%{_datadir}/snmp/mibs/VRRPv3-MIB.txt
95291cc
%endif
9c34e40
%{_bindir}/genhash
5c6debe
%{_unitdir}/keepalived.service
9c34e40
%{_mandir}/man1/genhash.1*
9c34e40
%{_mandir}/man5/keepalived.conf.5*
9c34e40
%{_mandir}/man8/keepalived.8*
9c34e40
9c34e40
%changelog
4151e48
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.8-5
4151e48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
4151e48
92bd098
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.8-4
92bd098
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
92bd098
df0ff14
* Fri Aug 04 2023 Ryan O'Hara <rohara@redhat.com> - 2.2.8-3
df0ff14
- Migrate to SPDX license
df0ff14
098dca0
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.8-2
098dca0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
098dca0
780ef64
* Thu Jun 08 2023 Ryan O'Hara <rohara@redhat.com> - 2.2.8-1
780ef64
- Update to 2.2.8 (#2211385)
780ef64
de115a1
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.7-6
de115a1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
de115a1
532118f
* Tue Dec 20 2022 Ryan O'Hara <rohara@redhat.com> - 2.2.7-5
532118f
- Enable JSON support
532118f
c78adb0
* Wed Dec  7 2022 Florian Weimer <fweimer@redhat.com> - 2.2.7-4
c78adb0
- Fix spurious implicit function declaration in broken configure check
c78adb0
ef21173
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.7-3
ef21173
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
ef21173
ef92eda
* Thu Jul 07 2022 Ryan O'Hara <rohara@redhat.com> - 2.2.7-2
ef92eda
- Move keepalived.conf.sample to keepalived.conf
ef92eda
10c9828
* Mon Feb 14 2022 Ryan O'Hara <rohara@redhat.com> - 2.2.7-1
10c9828
- Update to 2.2.7 (#2041231)
10c9828
6f08ad6
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.4-5
6f08ad6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
6f08ad6
47102d4
* Tue Dec 14 2021 Ryan O'Hara <rohara@redhat.com> - 2.2.4-4
47102d4
- Fix dbus policy (#2027158, CVE-2021-44225)
47102d4
1a50e5d
* Sat Nov 27 2021 Kevin Fenzi <kevin@scrye.com> - 2.2.4-3
1a50e5d
- Rebuild for new libnftnl
1a50e5d
df4d8c9
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 2.2.4-2
df4d8c9
- Rebuilt with OpenSSL 3.0.0
df4d8c9
f1c64ec
* Mon Aug 23 2021 Ryan O'Hara <rohara@redhat.com> - 2.2.4-1
f1c64ec
- Update to 2.2.4 (#1996274)
f1c64ec
2d246f0
* Sat Aug 14 2021 Ryan O'Hara <rohara@redhat.com> - 2.2.3-1
2d246f0
- Update to 2.2.3 (#1993601)
2d246f0
465c816
* Tue Aug 03 2021 Ryan O'Hara <rohara@redhat.com> - 2.2.2-5
465c816
- Add systemd notify support
465c816
68fd833
* Tue Aug 03 2021 Ryan O'Hara <rohara@redhat.com> - 2.2.2-4
68fd833
- Fix build errors (#1987620)
68fd833
ece94fb
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.2-3
ece94fb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
ece94fb
950a4ae
* Mon Apr 12 2021 Ryan O'Hara <rohara@redhat.com> - 2.2.2-2
950a4ae
- Add BuildRequires for file-devel
950a4ae
db9617b
* Wed Apr 07 2021 Ryan O'Hara <rohara@redhat.com> - 2.2.2-1
db9617b
- Update to 2.2.2 (#1935590)
db9617b
6a3a16a
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.2.1-3
6a3a16a
- Rebuilt for updated systemd-rpm-macros
6a3a16a
  See https://pagure.io/fesco/issue/2583.
6a3a16a
2e6a551
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-2
2e6a551
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2e6a551
d512317
* Mon Jan 18 2021 Ryan O'Hara <rohara@redhat.com> - 2.2.1-1
d512317
- Update to 2.2.1 (#1917152)
d512317
ab73f75
* Thu Jan 14 2021 Ryan O'Hara <rohara@redhat.com> - 2.2.0-1
ab73f75
- Update to 2.2.0 (#1914512)
ab73f75
ff693be
* Thu Aug 27 2020 Josef Řídký <jridky@redhat.com> - 2.1.5-3
ff693be
- Rebuilt for new net-snmp release
ff693be
8c86bb3
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.5-2
8c86bb3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
8c86bb3
81079d0
* Wed Jul 15 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.5-1
81079d0
- Update to 2.1.5 (#1794135)
81079d0
2bce224
* Tue Feb 18 2020 Ryan O'Hara <rohara@redhat.com> - 2.0.20-3
2bce224
- Build with nftables support instead of iptables
2bce224
431b0fc
* Thu Feb 13 2020 Ryan O'Hara <rohara@redhat.com> - 2.0.20-2
431b0fc
- Remove unused patches
431b0fc
431b0fc
* Wed Feb 12 2020 Ryan O'Hara <rohara@redhat.com> - 2.0.20-1
09cfcb5
- Update to 2.0.20 (#1794135)
09cfcb5
af6662b
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.19-5
af6662b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
af6662b
50dd9a3
* Tue Nov 12 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.19-4
50dd9a3
- Fix file descriptor errors on reload
50dd9a3
c453f7e
* Tue Nov 12 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.19-3
c453f7e
- Fix track_process with PIDs over 32767 (#1770766)
c453f7e
876ddb0
* Wed Nov 06 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.19-2
876ddb0
- Enable nftables support (#1769278)
876ddb0
30521c5
* Wed Nov 06 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.19-1
30521c5
- Update to 2.0.19 (#1763424)
30521c5
1de187f
* Tue Jul 30 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.18-2
1de187f
- Change pidfile directory (#1712730)
1de187f
f1fd3d1
* Tue Jul 30 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.18-1
f1fd3d1
- Update to 2.0.18 (#1678397)
f1fd3d1
d966df8
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.12-3
d966df8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
d966df8
6eb2036
* Tue Jun 25 2019 Björn Esser <besser82@fedoraproject.org> - 2.0.12-2
6eb2036
- Rebuilt (iptables)
6eb2036
17f6220
* Mon Feb 04 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.12-1
17f6220
- Update to 2.0.12 (#1576138)
17f6220
e4f5d4e
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.11-2
e4f5d4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
e4f5d4e
d274321
* Wed Jan 09 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.11-1
d274321
- Update to 2.0.11
d274321
ee2512c
* Mon Nov 26 2018 Ryan O'Hara <rohara@redhat.com> - 2.0.10-1
ee2512c
- Update to 2.0.10
ee2512c
- Fix improper pathname validation (#1651864, CVE-2018-19044)
ee2512c
- Fix insecure permissions when creating temporary files (#1651868, CVE-2018-19045)
ee2512c
- Fix insecure use of temporary files (#1651870, CVE-2018-19046)
ee2512c
- Fix buffer overflow when parsing HTTP status codes (#1651873, CVE-2018-19047)
ee2512c
dcb381c
* Wed Jul 25 2018 Ryan O'Hara <rohara@redhat.com> - 2.0.6-1
dcb381c
- Update to 2.0.6 (#1576138)
dcb381c
351f65b
* Tue Jul 24 2018 Adam Williamson <awilliam@redhat.com> - 2.0.5-3
351f65b
- Rebuild for new net-snmp
351f65b
2f0e224
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.5-2
2f0e224
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2f0e224
323bf25
* Tue Jul 03 2018 Ryan O'Hara <rohara@redhat.com> - 2.0.5-1
323bf25
- Update to 2.0.5 (#1576138)
323bf25
f03712c
* Mon Jul 02 2018 Ryan O'Hara <rohara@redhat.com> - 1.4.5-1
f03712c
- Update to 1.4.5
f03712c
f03712c
* Thu May 10 2018 Ryan O'Hara <rohara@redhat.com> - 1.4.4-1
80e6f7a
- Update to 1.4.4 (#1576138)
80e6f7a
a2d5f0c
* Thu Apr 19 2018 Ryan O'Hara <rohara@redhat.com> - 1.4.3-1
a2d5f0c
- Update to 1.4.3 (#1565388)
a2d5f0c
c547ab1
* Wed Mar 07 2018 Ryan O'Hara <rohara@redhat.com> - 1.4.2-1
c547ab1
- Update to 1.4.2 (#1539269)
c547ab1
23f2285
* Mon Jan 29 2018 Ryan O'Hara <rohara@redhat.com> - 1.4.1-1
23f2285
- Update to 1.4.1 (#1539269)
23f2285
026eed3
* Fri Jan 05 2018 Ryan O'Hara <rohara@redhat.com> - 1.4.0-1
026eed3
- Update to 1.4.0 (#1529802)
026eed3
9157eff
* Wed Oct 25 2017 Ryan O'Hara <rohara@redhat.com> - 1.3.9-1
9157eff
- Update to 1.3.9 (#1497576)
9157eff
3f06ebd
* Mon Sep 11 2017 Ryan O'Hara <rohara@redhat.com> - 1.3.6-1
3f06ebd
- Update to 1.3.6 (#1481471)
3f06ebd
f060415
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-3
f060415
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
f060415
ab35370
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-2
ab35370
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
ab35370
22ea97a
* Sun Mar 26 2017 Ryan O'Hara <rohara@redhat.com> - 1.3.5-1
22ea97a
- Update to 1.3.5 (#1422063)
22ea97a
527b9e7
* Sun Feb 05 2017 Kalev Lember <klember@redhat.com> - 1.3.2-2
527b9e7
- Rebuilt for libxtables soname bump
527b9e7
cb8e779
* Mon Nov 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.3.2-1
cb8e779
- Update to 1.3.2 (#1396857)
cb8e779
06a12ed
* Fri Sep 16 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.24-3
06a12ed
- Add BuildRequires for iptables-devel (#1361686)
06a12ed
512c812
* Fri Sep 16 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.24-2
512c812
- Fix configure script
512c812
3328cf6
* Thu Sep 15 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.24-1
3328cf6
- Update to 1.2.24 (#1376254)
3328cf6
b19344e
* Wed Jul 13 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.23-1
b19344e
- Update to 1.2.23 (#1354696)
b19344e
4bdb6d3
* Wed Jun 15 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.22-1
4bdb6d3
- Update to 1.2.22 (#1346509)
4bdb6d3
cd82bae
* Tue Jun 14 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.21-3
cd82bae
- Remove net-snmp U64 typedef
cd82bae
f674625
* Fri Jun 03 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.21-2
f674625
- Remove unnecessary BuildRequires (#1327873)
f674625
898af3c
* Fri Jun 03 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.21-1
898af3c
- Update to 1.2.21 (#1341372)
898af3c
ead6a57
* Sun Apr 10 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.20-2
ead6a57
- Install VRRP MIB
ead6a57
08f7351
* Mon Apr 04 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.20-1
08f7351
- Update to 1.2.20 (#1323526)
08f7351
dd40cd2
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.19-4
dd40cd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
dd40cd2
0113adb
* Sat Jan 23 2016 Ryan O'Hara <rohara@redhat.com> - 1.2.19-3
0113adb
- Add PIDFile to systemd unit file (#1280437)
0113adb
7979cb8
* Wed Jul 29 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.2.19-2
7979cb8
- Rebuilt for rpm 4.12.90
7979cb8
00a57d1
* Wed Jul 15 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.19-1
00a57d1
- Update to 1.2.19 (#1240863)
00a57d1
30521cb
* Wed Jul 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.18-1
30521cb
- Update to 1.2.18 (#1237377)
30521cb
e63d0ad
* Tue Jun 23 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.17-5
e63d0ad
- Revert patch that changed VRRP notify scripts to list (#1232073)
e63d0ad
d957efe
* Wed Jun 17 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.17-4
d957efe
- Fix multiple VRRP instances with same interface (#1232408)
d957efe
5d8db99
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.17-3
5d8db99
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
5d8db99
1ea5841
* Mon Jun 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.17-2
1ea5841
- Add VRRP MIB file
1ea5841
1a1117c
* Mon Jun 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.17-1
db5a269
- Update to 1.2.17
db5a269
f825d83
* Wed Apr 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.16-1
f825d83
- Update to 1.2.16
f825d83
b15d6c5
* Wed Mar 18 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.15-3
b15d6c5
- Revert previous preempt extension (#1202584)
b15d6c5
e33eea2
* Tue Jan 13 2015 Ryan O'Hara <rohara@redhat.com> - 1.2.15-2
e33eea2
- Depend on network-online.target systemd unit (#1181097)
e33eea2
fc9ed6c
* Tue Dec 23 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.15-1
fc9ed6c
- Update to 1.2.15
fc9ed6c
3c0be38
* Tue Dec 16 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.14-1
3c0be38
- Update to 1.2.14
3c0be38
a518763
* Tue Oct 28 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.13-4
a518763
- Create /usr/libexec/keepalived directory (#1158113)
a518763
cbe5198
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.13-3
cbe5198
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
cbe5198
686ae74
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.13-2
686ae74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
686ae74
834eae6
* Tue May 13 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.13-1
834eae6
- Update to 1.2.13
834eae6
ededfdf
* Mon Feb 10 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.12-1
ededfdf
- Update to 1.2.12
ededfdf
6f06c70
* Mon Feb 03 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.11-1
6f06c70
- Update to 1.2.11
6f06c70
f84412e
* Mon Jan 13 2014 Ryan O'Hara <rohara@redhat.com> - 1.2.10-1
6f06c70
- Update to 1.2.10
f84412e
f95515c
* Mon Nov 11 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.9-1
f95515c
- Update to 1.2.9.
f95515c
5b3f613
* Thu Sep 19 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.8-2
5b3f613
- Bump release and rebuild.
5b3f613
96cb916
* Thu Sep 05 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.8-1
96cb916
- Update to 1.2.8.
96cb916
04de670
* Mon Aug 19 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-10
04de670
- Add To header for SMTP alerts (#967641)
04de670
1ff945e
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.7-9
1ff945e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
1ff945e
5c6e4b9
* Mon Jul 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-8
5c6e4b9
- Fix macro in keepalived.conf.5 man page.
5c6e4b9
306bf7c
* Mon Jul 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-7
306bf7c
- Fix systemd requirements.
306bf7c
5c6debe
* Mon Jul 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-6
5c6debe
- Install the systemd unit file, not the init script.
5c6debe
1b350c8
* Mon Apr 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-5
1b350c8
- Build with PIE flags (#955150)
1b350c8
012955f
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.7-4
012955f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
012955f
95291cc
* Wed Jan 2 2013 Ryan O'Hara <rohara@redhat.com> - 1.2.7-3
95291cc
- Update spec file.
95291cc
- Add option to prevent respawn of child processes.
95291cc
- Remove duplicate command-line option code.
95291cc
- Use popt to generate usage message.
95291cc
- Fix pointer arithmetic for VRRP packets.
95291cc
- Fix comparison of primary IP address.
95291cc
- Fix loading of SSL certificate.
95291cc
- Fix typo in error message.
95291cc
- Update FSF address in GPLv2 license.
95291cc
- Remove debug message from if_get_by_ifname.
95291cc
8775ed7
* Mon Sep 24 2012 Václav Pavlín <vpavlin@redhat.com> - 1.2.7-2
95291cc
- Scriptlets replaced with new systemd macros (#850173).
8775ed7
90e5aa3
* Tue Sep 04 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.7-1
90e5aa3
- Update to 1.2.7.
90e5aa3
- Fix systemd service file (#769726).
90e5aa3
284fd58
* Mon Aug 20 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.6-1
284fd58
- Update to 1.2.6.
284fd58
4012013
* Tue Aug 14 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.5-2
95291cc
- Install KEEPALIVED-MIB as KEEPALIVED-MIB.txt.
4012013
e756fa9
* Mon Aug 13 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.5-1
e756fa9
- Update to 1.2.5.
e756fa9
f616109
* Wed Aug 01 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.4-1
f616109
- Update to 1.2.4.
f616109
382f01f
* Mon Jul 23 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.3-1
382f01f
- Update to 1.2.3.
382f01f
05a3299
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-6
05a3299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
05a3299
5413cb4
* Tue May 08 2012 Ryan O'Hara <rohara@redhat.com> - 1.2.2-5
5413cb4
- Fix IPv4 address comparison (#768119).
5413cb4
e7b7da8
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-4
e7b7da8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e7b7da8
d570dcb
* Mon Sep 19 2011 Tom Callaway <spot@fedoraproject.org> - 1.2.2-3
d570dcb
- convert to systemd
d570dcb
- fix ip_vs.h path searching in configure
d570dcb
834eae6
* Tue Jul 12 2011 Matthias Saou <http://freshrpms.net/> 1.2.2-2
Matthias Saou 921ff3c
- Build against libnl for Fedora. RHEL's libnl is too old.
Matthias Saou 921ff3c
Matthias Saou 560ecbe
* Sat May 21 2011 Matthias Saou <http://freshrpms.net/> 1.2.2-1
Matthias Saou 560ecbe
- Update to 1.2.2.
Matthias Saou 560ecbe
7e6cb0a
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.20-3
7e6cb0a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
7e6cb0a
2e7c857
* Sun Jan 16 2011 Dan Horák <dan[at]danny.cz> 1.1.20-2
2e7c857
- exclude arches where we don't provide 32-bit kernel
2e7c857
Matthias Saou 560ecbe
* Tue Jan 11 2011 Matthias Saou <http://freshrpms.net/> 1.2.1-1
Matthias Saou 560ecbe
- Update to 1.2.1, now with IPv6 support.
Matthias Saou 560ecbe
7835b6a
* Sun May 23 2010 Matthias Saou <http://freshrpms.net/> 1.1.20-1
7835b6a
- Update to 1.1.20 (#589923).
7835b6a
- Update BR conditional for RHEL6.
7835b6a
- No longer include goodies/arpreset.pl, it's gone from the sources.
7835b6a
38366d7
* Tue Dec  8 2009 Matthias Saou <http://freshrpms.net/> 1.1.19-3
38366d7
- Update init script to have keepalived start after the local MTA (#526512).
38366d7
- Simplify the kernel source detection, to avoid running rpm from rpmbuild.
38366d7
3412c26
* Tue Nov 24 2009 Matthias Saou <http://freshrpms.net/> 1.1.19-2
3412c26
- Include patch to remove obsolete -k option to modprobe (#528465).
3412c26
3412c26
* Wed Oct 21 2009 Matthias Saou <http://freshrpms.net/> 1.1.19-1
3412c26
- Update to 1.1.19.
3412c26
a354890
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.1.17-3
a354890
- rebuilt with new openssl
a354890
73ebad4
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.17-2
73ebad4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
73ebad4
d5ea702
* Sun Apr 12 2009 Matthias Saou <http://freshrpms.net/> 1.1.17-1
d5ea702
- Update to 1.1.17.
d5ea702
- Update init script all the way.
d5ea702
d5ea702
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
a0c562c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
a0c562c
002ec75
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> 1.1.15-7
002ec75
- rebuild with new openssl
002ec75
8cb0689
* Mon Dec 22 2008 Matthias Saou <http://freshrpms.net/> 1.1.15-6
8cb0689
- Fork the init script to be (mostly for now) LSB compliant (#246966).
8cb0689
82524dc
* Thu Apr 24 2008 Matthias Saou <http://freshrpms.net/> 1.1.15-5
82524dc
- Add glob to the kerneldir location, since it contains the arch for F9+.
82524dc
82524dc
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org>
aacb71f
- Autorebuild for GCC 4.3
aacb71f
82524dc
* Wed Dec 05 2007 Release Engineering <rel-eng at fedoraproject dot org>
8cb0689
- Rebuild for deps
570ac56
bd6348e
* Mon Oct 22 2007 Matthias Saou <http://freshrpms.net/> 1.1.15-2
bd6348e
- Update to latest upstream sources, identical except for the included spec.
bd6348e
d24efed
* Mon Sep 17 2007 Matthias Saou <http://freshrpms.net/> 1.1.15-1
d24efed
- Update to 1.1.15.
d24efed
- Remove merged genhashman and include patches.
d24efed
d9fb121
* Fri Sep 14 2007 Matthias Saou <http://freshrpms.net/> 1.1.14-2
d9fb121
- Include patch from Shinji Tanaka to fix conf include from inside some
d9fb121
  directives like vrrp_instance.
d9fb121
545fb5e
* Thu Sep 13 2007 Matthias Saou <http://freshrpms.net/> 1.1.14-1
545fb5e
- Update to 1.1.14.
545fb5e
- Remove all upstreamed patches.
545fb5e
- Remove our init script and sysconfig files, use the same now provided by the
545fb5e
  upstream package (will need to patch for LSB stuff soonish).
545fb5e
- Include new goodies/arpreset.pl in %%doc.
545fb5e
- Add missing scriplet requirements.
545fb5e
dbd65b9
* Wed Aug 22 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-8
dbd65b9
- Rebuild for new BuildID feature.
dbd65b9
8cff8b6
* Sun Aug  5 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-7
8cff8b6
- Update License field.
8cff8b6
9c34e40
* Mon Mar 26 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-6
9c34e40
- Fix doc/samples/sample.misccheck.smbcheck.sh mode (600 -> 644).
9c34e40
9c34e40
* Thu Mar 22 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-5
9c34e40
- Include types patch to fix compile on F7 (David Woodhouse).
9c34e40
- Fix up file modes (main binary 700 -> 755 and config 600 -> 640).
9c34e40
9c34e40
* Tue Feb 13 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-4
9c34e40
- Add missing \n to the kernel define, for when multiple kernels are installed.
9c34e40
- Pass STRIP=/bin/true to "make" in order to get a useful debuginfo package.
9c34e40
9c34e40
* Tue Feb 13 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-3
9c34e40
- Add %%check section to make sure any build without LVS support will fail.
9c34e40
9c34e40
* Mon Feb  5 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-2
9c34e40
- Use our own init script, include a sysconfig entry used by it for options.
9c34e40
9c34e40
* Thu Jan 25 2007 Matthias Saou <http://freshrpms.net/> 1.1.13-1
9c34e40
- Update to 1.1.13.
9c34e40
- Change mode of configuration file to 0600.
9c34e40
- Don't include all of "doc" since it meant re-including all man pages.
9c34e40
- Don't include samples in the main configuration path, they're in %%doc.
9c34e40
- Include patch to add an optional label to interfaces.
9c34e40
9c34e40
* Sat Apr 08 2006 Dries Verachtert <dries@ulyssis.org> - 1.1.12-1.2
9c34e40
- Rebuild for Fedora Core 5.
9c34e40
9c34e40
* Sun Mar 12 2006 Dag Wieers <dag@wieers.com> - 1.1.12-1
9c34e40
- Updated to release 1.1.12.
9c34e40
9c34e40
* Fri Mar 04 2005 Dag Wieers <dag@wieers.com> - 1.1.11-1
9c34e40
- Updated to release 1.1.11.
9c34e40
9c34e40
* Wed Feb 23 2005 Dag Wieers <dag@wieers.com> - 1.1.10-2
9c34e40
- Fixed IPVS/LVS support. (Joe Sauer)
9c34e40
9c34e40
* Tue Feb 15 2005 Dag Wieers <dag@wieers.com> - 1.1.10-1
9c34e40
- Updated to release 1.1.10.
9c34e40
9c34e40
* Mon Feb 07 2005 Dag Wieers <dag@wieers.com> - 1.1.9-1
9c34e40
- Updated to release 1.1.9.
9c34e40
9c34e40
* Sun Oct 17 2004 Dag Wieers <dag@wieers.com> - 1.1.7-2
9c34e40
- Fixes to build with kernel IPVS support. (Tim Verhoeven)
9c34e40
9c34e40
* Fri Sep 24 2004 Dag Wieers <dag@wieers.com> - 1.1.7-1
9c34e40
- Updated to release 1.1.7. (Mathieu Lubrano)
9c34e40
9c34e40
* Mon Feb 23 2004 Dag Wieers <dag@wieers.com> - 1.1.6-0
9c34e40
- Updated to release 1.1.6.
9c34e40
9c34e40
* Mon Jan 26 2004 Dag Wieers <dag@wieers.com> - 1.1.5-0
9c34e40
- Updated to release 1.1.5.
9c34e40
9c34e40
* Mon Dec 29 2003 Dag Wieers <dag@wieers.com> - 1.1.4-0
9c34e40
- Updated to release 1.1.4.
9c34e40
9c34e40
* Fri Jun 06 2003 Dag Wieers <dag@wieers.com> - 1.0.3-0
9c34e40
- Initial package. (using DAR)
9c34e40