Compare commits
31 Commits
1.3.9-1mam
...
main
Author | SHA1 | Date | |
---|---|---|---|
6283fbe99c | |||
85cdd556fc | |||
67d0493717 | |||
16c11a3ceb | |||
a07b290be3 | |||
1825dc43ab | |||
c5e3b5a305 | |||
12dd27a089 | |||
44cc6b6d7d | |||
937ba5d0c4 | |||
88eadaa4a6 | |||
b86e5119f2 | |||
34470d988b | |||
6032899eee | |||
3f5f48371d | |||
3582031dc9 | |||
055109f070 | |||
ac726915ce | |||
57f690402c | |||
576128a749 | |||
e58549e9e0 | |||
e08298a935 | |||
f141723444 | |||
b27f150623 | |||
3fed47a3f3 | |||
46d6eaad1b | |||
97d97e341f | |||
2801f6f641 | |||
781084b26b | |||
ab85a0995e | |||
0ba3d62d29 |
@ -7,6 +7,6 @@ Layer3, Layer4 & Layer5.
|
|||||||
This framework gives the daemon the ability of checking a LVS server pool states.
|
This framework gives the daemon the ability of checking a LVS server pool states.
|
||||||
When one of the server of the LVS server pool is down, keepalived informs the linux kernel via a setsockopt call to remove this server entrie from the LVS topology.
|
When one of the server of the LVS server pool is down, keepalived informs the linux kernel via a setsockopt call to remove this server entrie from the LVS topology.
|
||||||
In addition keepalived implements a VRRPv2 stack to handle director failover.
|
In addition keepalived implements a VRRPv2 stack to handle director failover.
|
||||||
|
|
||||||
So in short keepalived is a userspace daemon for LVS cluster nodes healthchecks and LVS directors failover.
|
So in short keepalived is a userspace daemon for LVS cluster nodes healthchecks and LVS directors failover.
|
||||||
|
|
||||||
|
|
||||||
|
114
keepalived.spec
114
keepalived.spec
@ -1,23 +1,28 @@
|
|||||||
Name: keepalived
|
Name: keepalived
|
||||||
Version: 1.3.9
|
Version: 2.3.3
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: HA monitor built upon LVS, VRRP and services poller
|
Summary: HA monitor built upon LVS, VRRP and services poller
|
||||||
Group: Applications/Networking
|
Group: Applications/Networking
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: http://www.keepalived.org/
|
URL: https://www.keepalived.org/
|
||||||
Source: http://www.keepalived.org/software/%{name}-%{version}.tar.gz
|
Source: http://www.keepalived.org/software/%{name}-%{version}.tar.gz
|
||||||
Source1: keepalived.service
|
Source1: keepalived.service
|
||||||
Patch: %{name}-1.1.10-manpath.patch
|
Patch: %{name}-1.1.10-manpath.patch
|
||||||
License: GPL
|
License: GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
BuildRequires: iptables-devel
|
BuildRequires: libiptables-devel
|
||||||
|
BuildRequires: libkmod-devel
|
||||||
|
BuildRequires: libmagic-devel
|
||||||
|
BuildRequires: libmnl-devel
|
||||||
|
BuildRequires: libnftnl-devel
|
||||||
BuildRequires: libnl-devel
|
BuildRequires: libnl-devel
|
||||||
BuildRequires: libopenssl-devel
|
BuildRequires: libopenssl-devel
|
||||||
|
BuildRequires: libsystemd-devel
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
BuildRequires: iptables-devel >= 1.8.3
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The main goal of the keepalived project is to add a strong end robust keepalive facility to the Linux Virtual Server project.
|
The main goal of the keepalived project is to add a strong end robust keepalive facility to the Linux Virtual Server project.
|
||||||
@ -27,12 +32,11 @@ Layer3, Layer4 & Layer5.
|
|||||||
This framework gives the daemon the ability of checking a LVS server pool states.
|
This framework gives the daemon the ability of checking a LVS server pool states.
|
||||||
When one of the server of the LVS server pool is down, keepalived informs the linux kernel via a setsockopt call to remove this server entrie from the LVS topology.
|
When one of the server of the LVS server pool is down, keepalived informs the linux kernel via a setsockopt call to remove this server entrie from the LVS topology.
|
||||||
In addition keepalived implements a VRRPv2 stack to handle director failover.
|
In addition keepalived implements a VRRPv2 stack to handle director failover.
|
||||||
|
|
||||||
So in short keepalived is a userspace daemon for LVS cluster nodes healthchecks and LVS directors failover.
|
So in short keepalived is a userspace daemon for LVS cluster nodes healthchecks and LVS directors failover.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
#%patch -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
@ -74,7 +78,7 @@ find /etc/rc[0-6].d/ -type l -xtype l -exec rm -f {} \;
|
|||||||
%dir %{_sysconfdir}/keepalived/
|
%dir %{_sysconfdir}/keepalived/
|
||||||
%config(noreplace) %{_sysconfdir}/keepalived/*
|
%config(noreplace) %{_sysconfdir}/keepalived/*
|
||||||
%config(noreplace) %{_sysconfdir}/sysconfig/keepalived
|
%config(noreplace) %{_sysconfdir}/sysconfig/keepalived
|
||||||
#%{_unitdir}/keepalived.service
|
%{_unitdir}/keepalived.service
|
||||||
%{_bindir}/genhash
|
%{_bindir}/genhash
|
||||||
%{_sbindir}/keepalived
|
%{_sbindir}/keepalived
|
||||||
#%{_datadir}/snmp/mibs/*-MIB
|
#%{_datadir}/snmp/mibs/*-MIB
|
||||||
@ -85,6 +89,102 @@ find /etc/rc[0-6].d/ -type l -xtype l -exec rm -f {} \;
|
|||||||
#% doc doc/keepalived.conf.SYNOPSIS doc/samples/
|
#% doc doc/keepalived.conf.SYNOPSIS doc/samples/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Mar 31 2025 Automatic Build System <autodist@openmamba.org> 2.3.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Nov 05 2024 Automatic Build System <autodist@openmamba.org> 2.3.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat May 25 2024 Automatic Build System <autodist@openmamba.org> 2.3.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu May 23 2024 Automatic Build System <autodist@openmamba.org> 2.3.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Jun 01 2023 Automatic Build System <autodist@mambasoft.it> 2.2.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Jan 17 2022 Automatic Build System <autodist@mambasoft.it> 2.2.7-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Aug 22 2021 Automatic Build System <autodist@mambasoft.it> 2.2.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Aug 18 2021 Automatic Build System <autodist@mambasoft.it> 2.2.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Aug 09 2021 Automatic Build System <autodist@mambasoft.it> 2.2.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Jan 18 2021 Automatic Build System <autodist@mambasoft.it> 2.2.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Jan 10 2021 Automatic Build System <autodist@mambasoft.it> 2.2.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Dec 11 2020 Automatic Build System <autodist@mambasoft.it> 2.1.5-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Jan 25 2020 Automatic Build System <autodist@mambasoft.it> 2.0.20-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Oct 20 2019 Automatic Build System <autodist@mambasoft.it> 2.0.19-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Aug 05 2019 Automatic Build System <autodist@mambasoft.it> 2.0.18-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Jul 11 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 2.0.17-2mamba
|
||||||
|
- rebuilt with iptables 1.8.3
|
||||||
|
|
||||||
|
* Tue Jul 02 2019 Automatic Build System <autodist@mambasoft.it> 2.0.17-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat May 11 2019 Automatic Build System <autodist@mambasoft.it> 2.0.16-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Feb 22 2019 Automatic Build System <autodist@mambasoft.it> 2.0.13-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Feb 11 2019 Automatic Build System <autodist@mambasoft.it> 2.0.12-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Jan 07 2019 Automatic Build System <autodist@mambasoft.it> 2.0.11-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Nov 20 2018 Automatic Build System <autodist@mambasoft.it> 2.0.10-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Oct 27 2018 Automatic Build System <autodist@mambasoft.it> 2.0.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Sep 07 2018 Automatic Build System <autodist@mambasoft.it> 2.0.7-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Aug 20 2018 Automatic Build System <autodist@mambasoft.it> 2.0.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Jun 14 2018 Automatic Build System <autodist@mambasoft.it> 2.0.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Jun 14 2018 Automatic Build System <autodist@mambasoft.it> 2.0.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu May 17 2018 Automatic Build System <autodist@mambasoft.it> 1.4.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Apr 18 2018 Automatic Build System <autodist@mambasoft.it> 1.4.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Mar 08 2018 Automatic Build System <autodist@mambasoft.it> 1.4.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.1-1mamba
|
||||||
|
- update to 1.4.1
|
||||||
|
|
||||||
|
* Sat Jan 06 2018 Automatic Build System <autodist@mambasoft.it> 1.4.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Tue Nov 21 2017 Automatic Build System <autodist@mambasoft.it> 1.3.9-1mamba
|
* Tue Nov 21 2017 Automatic Build System <autodist@mambasoft.it> 1.3.9-1mamba
|
||||||
- automatic update by autodist
|
- automatic update by autodist
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user