commit
8c7e017bb5
@ -0,0 +1 @@
|
|||||||
|
SOURCES/lldpd-1.0.1.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
ffae3bd667f7edae300b0c63a5f0103eb8c1118f SOURCES/lldpd-1.0.1.tar.gz
|
@ -0,0 +1,104 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# lldpd init file
|
||||||
|
#
|
||||||
|
# chkconfig: - 60 20
|
||||||
|
# description: 802.1ab (LLDP) daemon
|
||||||
|
#
|
||||||
|
# processname: lldpd
|
||||||
|
# pidfile: /var/run/lldpd.pid
|
||||||
|
|
||||||
|
### BEGIN INIT INFO
|
||||||
|
# Provides: lldpd
|
||||||
|
# Required-Start: $local_fs $remote_fs
|
||||||
|
# Required-Stop: $local_fs $remote_fs
|
||||||
|
# Should-Start: $syslog $network $net-snmp
|
||||||
|
# Should-Stop: $syslog $network $net-snmp
|
||||||
|
# Default-Stop: 0 1 6
|
||||||
|
# Short-Description: LLDP daemon
|
||||||
|
# Description: 802.1ab (LLDP) daemon
|
||||||
|
### END INIT INFO
|
||||||
|
|
||||||
|
# source function library
|
||||||
|
. /etc/rc.d/init.d/functions
|
||||||
|
|
||||||
|
exec="/usr/sbin/lldpd"
|
||||||
|
prog="lldpd"
|
||||||
|
config="/etc/lldpd.d"
|
||||||
|
|
||||||
|
[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog
|
||||||
|
|
||||||
|
lockfile=/var/lock/subsys/$prog
|
||||||
|
|
||||||
|
start() {
|
||||||
|
[ -x $exec ] || exit 4
|
||||||
|
[ -d $config ] || exit 6
|
||||||
|
echo -n $"Starting $prog: "
|
||||||
|
daemon $exec $LLDPD_OPTIONS
|
||||||
|
retval=$?
|
||||||
|
echo
|
||||||
|
[ $retval -eq 0 ] && touch $lockfile
|
||||||
|
return $retval
|
||||||
|
}
|
||||||
|
|
||||||
|
stop() {
|
||||||
|
echo -n $"Stopping $prog: "
|
||||||
|
killproc $exec
|
||||||
|
retval=$?
|
||||||
|
echo
|
||||||
|
[ $retval -eq 0 ] && rm -f $lockfile
|
||||||
|
return $RETVAL
|
||||||
|
}
|
||||||
|
|
||||||
|
restart() {
|
||||||
|
stop
|
||||||
|
start
|
||||||
|
}
|
||||||
|
|
||||||
|
reload() {
|
||||||
|
restart
|
||||||
|
}
|
||||||
|
|
||||||
|
force_reload() {
|
||||||
|
restart
|
||||||
|
}
|
||||||
|
|
||||||
|
rh_status() {
|
||||||
|
# run checks to determine if the service is running or use generic status
|
||||||
|
status $prog
|
||||||
|
}
|
||||||
|
|
||||||
|
rh_status_q() {
|
||||||
|
rh_status >/dev/null 2>&1
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
start)
|
||||||
|
rh_status_q && exit 0
|
||||||
|
$1
|
||||||
|
;;
|
||||||
|
stop)
|
||||||
|
rh_status_q || exit 0
|
||||||
|
$1
|
||||||
|
;;
|
||||||
|
restart)
|
||||||
|
$1
|
||||||
|
;;
|
||||||
|
reload)
|
||||||
|
rh_status_q || exit 7
|
||||||
|
$1
|
||||||
|
;;
|
||||||
|
force-reload)
|
||||||
|
force_reload
|
||||||
|
;;
|
||||||
|
status)
|
||||||
|
rh_status
|
||||||
|
;;
|
||||||
|
condrestart|try-restart)
|
||||||
|
rh_status_q || exit 0
|
||||||
|
restart
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"
|
||||||
|
exit 2
|
||||||
|
esac
|
||||||
|
exit $?
|
@ -0,0 +1,20 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=LLDP daemon
|
||||||
|
Documentation=man:lldpd(8)
|
||||||
|
After=network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=notify
|
||||||
|
NotifyAccess=main
|
||||||
|
EnvironmentFile=-/etc/sysconfig/lldpd
|
||||||
|
ExecStart=/usr/sbin/lldpd $DAEMON_ARGS $LLDPD_OPTIONS
|
||||||
|
Restart=on-failure
|
||||||
|
PrivateTmp=yes
|
||||||
|
RestrictAddressFamilies=AF_INET AF_INET6 AF_PACKET AF_NETLINK AF_UNIX
|
||||||
|
ProtectHome=yes
|
||||||
|
ReadWriteDirectories=/var/run/lldpd
|
||||||
|
ProtectSystem=full
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
|
@ -0,0 +1,23 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=LLDP daemon
|
||||||
|
Documentation=man:lldpd(8)
|
||||||
|
After=network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=notify
|
||||||
|
NotifyAccess=main
|
||||||
|
EnvironmentFile=-/etc/sysconfig/lldpd
|
||||||
|
ExecStart=/usr/sbin/lldpd $DAEMON_ARGS $LLDPD_OPTIONS
|
||||||
|
Restart=on-failure
|
||||||
|
PrivateTmp=yes
|
||||||
|
RestrictAddressFamilies=AF_INET AF_INET6 AF_PACKET AF_NETLINK AF_UNIX
|
||||||
|
ProtectHome=yes
|
||||||
|
ReadWritePaths=/var/run/lldpd
|
||||||
|
ProtectSystem=strict
|
||||||
|
ProtectKernelTunables=yes
|
||||||
|
ProtectControlGroups=yes
|
||||||
|
ProtectKernelModules=yes
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
|
@ -0,0 +1,8 @@
|
|||||||
|
## Path: Network/Discovery
|
||||||
|
## Description: lldpd configuration
|
||||||
|
## Type: string(-x,-c,-s,-e,-f)
|
||||||
|
## Default: ""
|
||||||
|
## ServiceRestart: lldpd
|
||||||
|
# Parameters for lldpd. See the manual page for the
|
||||||
|
# accepted parameters.
|
||||||
|
LLDPD_OPTIONS=""
|
@ -0,0 +1,2 @@
|
|||||||
|
d /run/lldpd 0755 root root -
|
||||||
|
d /run/lldpd/chroot 0755 root root -
|
@ -0,0 +1,215 @@
|
|||||||
|
%if 0%{?el6}
|
||||||
|
%bcond_with systemd
|
||||||
|
%global rundir /var/run/
|
||||||
|
%else
|
||||||
|
%bcond_without systemd
|
||||||
|
%global rundir /run/
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%global gh_owner vincentbernat
|
||||||
|
|
||||||
|
Name: lldpd
|
||||||
|
Version: 1.0.1
|
||||||
|
Release: 2%{?dist}
|
||||||
|
Summary: ISC-licensed implementation of LLDP
|
||||||
|
|
||||||
|
License: ISC
|
||||||
|
URL: https://%{gh_owner}.github.io/%{name}/
|
||||||
|
Source0: https://media.luffy.cx/files/lldpd/lldpd-%{version}.tar.gz
|
||||||
|
Source1: %{name}-fedora.service
|
||||||
|
Source2: %{name}-tmpfiles
|
||||||
|
Source3: %{name}-fedora.sysconfig
|
||||||
|
Source4: %{name}-el6.init
|
||||||
|
Source5: %{name}-el7.service
|
||||||
|
|
||||||
|
BuildRequires: readline-devel
|
||||||
|
BuildRequires: check-devel
|
||||||
|
BuildRequires: net-snmp-devel
|
||||||
|
BuildRequires: libxml2-devel
|
||||||
|
# EL6 needs libevent2 as the package
|
||||||
|
%if 0%{?el6}
|
||||||
|
BuildRequires: libevent2-devel
|
||||||
|
%else
|
||||||
|
BuildRequires: libevent-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?with_systemd}
|
||||||
|
# For systemd stuff
|
||||||
|
BuildRequires: systemd
|
||||||
|
%{?systemd_requires}
|
||||||
|
%else
|
||||||
|
Requires(post): chkconfig
|
||||||
|
Requires(preun): chkconfig
|
||||||
|
# This is for /sbin/service
|
||||||
|
Requires(preun): initscripts
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Requires(pre): shadow-utils
|
||||||
|
|
||||||
|
%description
|
||||||
|
LLDP is an industry standard protocol designed to supplant proprietary
|
||||||
|
Link-Layer protocols such as EDP or CDP. The goal of LLDP is to provide
|
||||||
|
an inter-vendor compatible mechanism to deliver Link-Layer notifications
|
||||||
|
to adjacent network devices.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Summary: %{summary}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
%{name} development libraries and headers
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure --disable-static --with-snmp --disable-silent-rules \
|
||||||
|
--with-privsep-user=%{name} --with-privsep-group=%{name} \
|
||||||
|
--with-privsep-chroot=%{rundir}%{name}/chroot \
|
||||||
|
--with-lldpd-ctl-socket=%{rundir}%{name}/%{name}.socket \
|
||||||
|
%if 0%{?with_systemd}
|
||||||
|
--with-systemdsystemunitdir=%{_unitdir} --with-sysusersdir=no
|
||||||
|
%endif
|
||||||
|
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%make_install
|
||||||
|
|
||||||
|
%if 0%{?with_systemd}
|
||||||
|
%if 0%{?fedora} >= 26
|
||||||
|
install -p -D -m644 %{SOURCE1} %{buildroot}%{_unitdir}/%{name}.service
|
||||||
|
%else
|
||||||
|
install -p -D -m644 %{SOURCE5} %{buildroot}%{_unitdir}/%{name}.service
|
||||||
|
%endif
|
||||||
|
install -p -D -m644 %{SOURCE2} %{buildroot}%{_tmpfilesdir}/%{name}.conf
|
||||||
|
%else
|
||||||
|
install -p -D -m755 %{SOURCE4} %{buildroot}%{_initddir}/%{name}
|
||||||
|
%endif
|
||||||
|
install -p -D -m644 %{SOURCE3} %{buildroot}/etc/sysconfig/%{name}
|
||||||
|
|
||||||
|
install -d -D -m 0755 %{buildroot}%{rundir}%{name}/chroot
|
||||||
|
install -d -m 0755 %{buildroot}%{_sharedstatedir}/%{name}
|
||||||
|
# remove the docs from buildroot
|
||||||
|
rm -rf %{buildroot}/usr/share/doc/%{name}
|
||||||
|
|
||||||
|
|
||||||
|
# don't include completion conf yet
|
||||||
|
rm -f %{buildroot}/usr/share/bash-completion/completions/lldpcli
|
||||||
|
rm -f %{buildroot}/usr/share/zsh/vendor-completions/_lldpcli
|
||||||
|
rm -f %{buildroot}/usr/share/zsh/site-functions/_lldpcli
|
||||||
|
|
||||||
|
# remove static libtool archive
|
||||||
|
rm -f %{buildroot}%{_libdir}/liblldpctl.la
|
||||||
|
|
||||||
|
%pre
|
||||||
|
getent group %{name} >/dev/null || groupadd -r %{name}
|
||||||
|
getent passwd %{name} >/dev/null || \
|
||||||
|
useradd -r -g %{name} -d %{_sharedstatedir}/%{name} -s /sbin/nologin \
|
||||||
|
-c "Used by the %{name} daemon" %{name}
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
%post
|
||||||
|
/sbin/ldconfig
|
||||||
|
%if 0%{?with_systemd}
|
||||||
|
%systemd_post %{name}.service
|
||||||
|
%else
|
||||||
|
# This adds the proper /etc/rc*.d links for the script
|
||||||
|
/sbin/chkconfig --add %{name}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%preun
|
||||||
|
%if 0%{?with_systemd}
|
||||||
|
%systemd_preun %{name}.service
|
||||||
|
%else
|
||||||
|
if [ $1 -eq 0 ] ; then
|
||||||
|
/sbin/service %{name} stop >/dev/null 2>&1
|
||||||
|
/sbin/chkconfig --del %{name}
|
||||||
|
fi
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%postun
|
||||||
|
/sbin/ldconfig
|
||||||
|
%if 0%{?with_systemd}
|
||||||
|
%systemd_postun_with_restart %{name}.service
|
||||||
|
%else
|
||||||
|
if [ "$1" -ge "1" ] ; then
|
||||||
|
/sbin/service %{name} condrestart >/dev/null 2>&1 || :
|
||||||
|
fi
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc NEWS README.md
|
||||||
|
%license LICENSE
|
||||||
|
%{_sbindir}/lldpcli
|
||||||
|
%{_sbindir}/lldpctl
|
||||||
|
%{_sbindir}/%{name}
|
||||||
|
%config %{_sysconfdir}/%{name}.d
|
||||||
|
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
|
||||||
|
%{_mandir}/man8/lldpcli.8*
|
||||||
|
%{_mandir}/man8/lldpctl.8*
|
||||||
|
%{_mandir}/man8/%{name}.8*
|
||||||
|
%{_libdir}/liblldpctl.so.4
|
||||||
|
%{_libdir}/liblldpctl.so.4.8.0
|
||||||
|
%dir %{rundir}%{name}
|
||||||
|
%dir %{rundir}%{name}/chroot
|
||||||
|
%if 0%{?with_systemd}
|
||||||
|
%{_unitdir}/%{name}.service
|
||||||
|
%{_tmpfilesdir}/%{name}.conf
|
||||||
|
%else
|
||||||
|
%{_initddir}/%{name}
|
||||||
|
%endif
|
||||||
|
%dir %attr(-,lldpd,lldpd) %{_sharedstatedir}/%{name}
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_includedir}/lldp-const.h
|
||||||
|
%{_includedir}/lldpctl.h
|
||||||
|
%{_libdir}/liblldpctl.so
|
||||||
|
%{_libdir}/pkgconfig/lldpctl.pc
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Aug 09 2018 Josef Ridky <jridky@redhat.com> - 1.0.1-2
|
||||||
|
- Rebuild for Net-SNMP
|
||||||
|
|
||||||
|
* Tue Apr 17 2018 James Hogarth <james.hogarth@gmail.com> - 1.0.1-1
|
||||||
|
- Update to 1.0.1
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.8-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Aug 21 2017 James Hogarth <james.hogarth@gmail.com> - 0.9.8-1
|
||||||
|
- Update to 0.9.8
|
||||||
|
|
||||||
|
* Fri Aug 11 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.7-10
|
||||||
|
- Rebuilt after RPM update (№ 3)
|
||||||
|
|
||||||
|
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.7-9
|
||||||
|
- Rebuilt for RPM soname bump
|
||||||
|
|
||||||
|
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.7-8
|
||||||
|
- Rebuilt for RPM soname bump
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.7-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.7-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Apr 06 2017 James Hogarth <james.hogarth@gmail.com> - 0.9.7-5
|
||||||
|
- Older fedora needs the older syntax matching EPEL7
|
||||||
|
|
||||||
|
* Wed Apr 05 2017 James Hogarth <james.hogarth@gmail.com> - 0.9.7-4
|
||||||
|
- EPEL7 systemd needs an older syntax
|
||||||
|
|
||||||
|
* Wed Apr 05 2017 James Hogarth <james.hogarth@gmail.com> - 0.9.7-3
|
||||||
|
- Use the official release tarball rather than the github snapshot
|
||||||
|
- Add EPEL6 conditionals
|
||||||
|
|
||||||
|
* Wed Apr 05 2017 James Hogarth <james.hogarth@gmail.com> - 0.9.7-2
|
||||||
|
- Tweaks to spec requested in review
|
||||||
|
|
||||||
|
* Tue Apr 04 2017 James Hogarth <james.hogarth@gmail.com> - 0.9.7-1
|
||||||
|
- Initial package
|
Loading…
Reference in new issue