mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

When interface goes down, and there are some static routes that are made with ip route, they are going to be deleted from kernel fib. That's what kernel does by default. But they are not going to be deleted from zebra's fib. They will be declared inactive. This issue was originally discussed in [1] and a patch was proposed. [1] http://www.gossamer-threads.com/lists/quagga/dev/22609 Signed-off-by: Aws Ismail <aws.ismail@windriver.com> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
170 lines
6.7 KiB
PHP
170 lines
6.7 KiB
PHP
SUMMARY = "BGP/OSPF/RIP routing daemon"
|
|
DESCRIPTION = "Quagga is a routing software suite, providing \
|
|
implementations of OSPFv2, OSPFv3, RIP v1 and v2, RIPv3 and BGPv4 for \
|
|
Unix platforms, particularly FreeBSD, Linux, Solaris and NetBSD. \
|
|
Quagga is a fork of GNU Zebra which was developed by Kunihiro \
|
|
Ishiguro. The Quagga tree aims to build a more involved community \
|
|
around Quagga than the current centralised model of GNU Zebra."
|
|
HOMEPAGE = "http://www.quagga.net/"
|
|
SECTION = "network"
|
|
LICENSE = "GPL-2.0 & LGPL-2.0"
|
|
DEPENDS = "readline ncurses perl-native"
|
|
DEPENDS += "${@base_contains('DISTRO_FEATURES', 'snmp', 'net-snmp', '', d)}"
|
|
SNMP_CONF="${@base_contains('DISTRO_FEATURES', 'snmp', '--enable-snmp', '', d)}"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
|
|
file://COPYING.LIB;md5=f30a9716ef3762e3467a2f62bf790f0a"
|
|
|
|
INC_PR = "r2"
|
|
|
|
QUAGGASUBDIR = ""
|
|
# ${QUAGGASUBDIR} is deal with old versions. Set to "/attic" for old
|
|
# versions and leave it empty for recent versions.
|
|
SRC_URI = "http://download.savannah.gnu.org/releases/quagga${QUAGGASUBDIR}/quagga-${PV}.tar.gz;name=quagga-${PV} \
|
|
file://fix-for-lib-inpath.patch \
|
|
file://quagga-0.99.17-libcap.patch \
|
|
file://Zebra-sync-zebra-routing-table-with-the-kernel-one.patch \
|
|
file://quagga.init \
|
|
file://quagga.default \
|
|
file://watchquagga.init \
|
|
file://watchquagga.default \
|
|
file://volatiles.03_quagga"
|
|
|
|
inherit autotools update-rc.d useradd
|
|
|
|
EXTRA_OECONF = "--sysconfdir=${sysconfdir}/quagga \
|
|
--localstatedir=${localstatedir}/run/quagga \
|
|
--enable-exampledir=${docdir}/quagga/examples/ \
|
|
--enable-vtysh \
|
|
--enable-isisd \
|
|
--enable-watchquagga \
|
|
--enable-ospf-te \
|
|
--enable-opaque-lsa \
|
|
--enable-ipv6 \
|
|
--enable-ospfclient=yes \
|
|
--enable-multipath=64 \
|
|
--enable-user=quagga \
|
|
--enable-group=quagga \
|
|
--enable-vty-group=quaggavty \
|
|
--enable-configfile-mask=0640 \
|
|
--enable-logfile-mask=0640 \
|
|
--enable-rtadv \
|
|
--enable-linux24-tcp-md5 \
|
|
${SNMP_CONF}"
|
|
|
|
do_install () {
|
|
# Install init script and default settings
|
|
install -m 0755 -d ${D}${sysconfdir}/default ${D}${sysconfdir}/init.d \
|
|
${D}${sysconfdir}/quagga ${D}${sysconfdir}/default/volatiles
|
|
install -m 0644 ${WORKDIR}/quagga.default ${D}${sysconfdir}/default/quagga
|
|
install -m 0644 ${WORKDIR}/watchquagga.default ${D}${sysconfdir}/default/watchquagga
|
|
install -m 0755 ${WORKDIR}/quagga.init ${D}${sysconfdir}/init.d/quagga
|
|
install -m 0755 ${WORKDIR}/watchquagga.init ${D}${sysconfdir}/init.d/watchquagga
|
|
install -m 0644 ${WORKDIR}/volatiles.03_quagga ${D}${sysconfdir}/default/volatiles/volatiles.03_quagga
|
|
|
|
# Install sample configurations for the daemons
|
|
for f in bgpd vtysh babeld isisd ospfd ripngd zebra ripd ospf6d; do
|
|
install -m 0640 ${S}/$f/$f.conf.sample ${D}${sysconfdir}/quagga/$f.conf.sample
|
|
done
|
|
|
|
# Install quagga
|
|
oe_runmake install DESTDIR=${D} prefix=${prefix} \
|
|
sbindir=${sbindir} \
|
|
sysconfdir=${sysconfdir}/quagga \
|
|
localstatedir=${localstatedir}/run/quagga
|
|
|
|
# Fix hardcoded paths
|
|
sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/*
|
|
sed -i 's!/usr/bin/!${bindir}/!g' ${D}${sysconfdir}/init.d/quagga
|
|
sed -i 's!/etc/!${sysconfdir}/!g' ${D}${sysconfdir}/init.d/* ${D}${sysconfdir}/default/watchquagga
|
|
sed -i 's!/var/!${localstatedir}/!g' ${D}${sysconfdir}/init.d/* ${D}${sysconfdir}/default/volatiles/volatiles.03_quagga
|
|
sed -i 's!^PATH=.*!PATH=${base_sbindir}:${sbindir}:${base_bindir}:${bindir}!' ${D}${sysconfdir}/init.d/*
|
|
}
|
|
|
|
# Split into a main package and separate per-protocol packages
|
|
PACKAGE_BEFORE_PN = "${PN}-ospfd ${PN}-ospf6d ${PN}-babeld ${PN}-bgpd \
|
|
${PN}-ripd ${PN}-ripngd ${PN}-isisd \
|
|
${PN}-ospfclient ${PN}-watchquagga"
|
|
|
|
FILES_${PN}-ospfd = "${sbindir}/ospfd ${libdir}/libospf.so.*"
|
|
FILES_${PN}-ospf6d = "${sbindir}/ospf6d"
|
|
FILES_${PN}-babeld = "${sbindir}/babeld"
|
|
FILES_${PN}-bgpd = "${sbindir}/bgpd"
|
|
FILES_${PN}-ripd = "${sbindir}/ripd"
|
|
FILES_${PN}-ripngd = "${sbindir}/ripngd"
|
|
FILES_${PN}-isisd = "${sbindir}/isisd"
|
|
FILES_${PN}-ospfclient = "${sbindir}/ospfclient ${libdir}/libospfapiclient.so.*"
|
|
FILES_${PN}-watchquagga = "${sbindir}/watchquagga ${sysconfdir}/default/watchquagga \
|
|
${sysconfdir}/init.d/watchquagga"
|
|
|
|
# Indicate that the default files are configuration files
|
|
CONFFILES_${PN} = "${sysconfdir}/default/quagga"
|
|
CONFFILES_${PN}-watchquagga = "${sysconfdir}/default/watchquagga"
|
|
|
|
# Stop the names being rewritten due to the internal shared libraries
|
|
DEBIAN_NOAUTONAME_${PN}-ospfd = "1"
|
|
DEBIAN_NOAUTONAME_${PN}-ospfclient = "1"
|
|
|
|
# the "ip" command from busybox is not sufficient (flush by protocol flushes all routes)
|
|
RDEPENDS_${PN} += "iproute2"
|
|
|
|
# Main init script starts all deamons
|
|
# Seperate init script for watchquagga
|
|
INITSCRIPT_PACKAGES = "${PN} ${PN}-watchquagga"
|
|
INITSCRIPT_NAME_${PN} = "quagga"
|
|
INITSCRIPT_PARAMS_${PN} = "defaults 15 85"
|
|
INITSCRIPT_NAME_${PN}-watchquagga = "watchquagga"
|
|
INITSCRIPT_PARAMS_${PN}-watchquagga = "defaults 90 10"
|
|
|
|
# Add quagga's user and group
|
|
USERADD_PACKAGES = "${PN}"
|
|
GROUPADD_PARAM_${PN} = "--system quagga ; --system quaggavty"
|
|
USERADD_PARAM_${PN} = "--system --home ${localstatedir}/run/quagga/ -M -g quagga quagga"
|
|
|
|
pkg_postinst_${PN} () {
|
|
if [ "x$D" != "x" ] ; then
|
|
exit 1
|
|
fi
|
|
for f in bgpd babeld isisd ospfd ripngd zebra ripd ospf6d; do touch ${sysconfdir}/quagga/$f.conf; done
|
|
chown quagga:quaggavty ${sysconfdir}/quagga
|
|
chown quagga:quagga ${sysconfdir}/quagga/*.conf
|
|
chmod 750 ${sysconfdir}/quagga
|
|
chown 640 ${sysconfdir}/quagga/*.conf
|
|
if [ -z "$D" ] && [ -e /etc/init.d/populate-volatile.sh ] ; then
|
|
${sysconfdir}/init.d/populate-volatile.sh update
|
|
fi
|
|
}
|
|
|
|
# Stop apps before uninstall
|
|
pkg_prerm_${PN} () {
|
|
${sysconfdir}/init.d/quagga stop
|
|
}
|
|
|
|
pkg_prerm_${PN}-ospfd () {
|
|
${sysconfdir}/init.d/quagga stop ospfd
|
|
}
|
|
|
|
pkg_prerm_${PN}-ospf6d () {
|
|
${sysconfdir}/init.d/quagga stop ospf6d
|
|
}
|
|
|
|
pkg_prerm_${PN}-babeld () {
|
|
${sysconfdir}/init.d/quagga stop babeld
|
|
}
|
|
|
|
pkg_prerm_${PN}-bgpd () {
|
|
${sysconfdir}/init.d/quagga stop bgpd
|
|
}
|
|
|
|
pkg_prerm_${PN}-ripd () {
|
|
${sysconfdir}/init.d/quagga stop ripd
|
|
}
|
|
|
|
pkg_prerm_${PN}-ripngd () {
|
|
${sysconfdir}/init.d/quagga stop ripngd
|
|
}
|
|
|
|
pkg_prerm_${PN}-isisd () {
|
|
${sysconfdir}/init.d/quagga stop isisd
|
|
}
|