forked from Mirror/frr
snapcraft: Add eigrp daemon to snap package
Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
This commit is contained in:
parent
fcf7458a16
commit
1e40b13af4
0
snapcraft/defaults/eigrpd.conf.default
Normal file
0
snapcraft/defaults/eigrpd.conf.default
Normal file
|
@ -13,6 +13,7 @@ install:
|
||||||
install -D -m 0755 ldpd-service $(DESTDIR)/bin/
|
install -D -m 0755 ldpd-service $(DESTDIR)/bin/
|
||||||
install -D -m 0755 nhrpd-service $(DESTDIR)/bin/
|
install -D -m 0755 nhrpd-service $(DESTDIR)/bin/
|
||||||
install -D -m 0755 babeld-service $(DESTDIR)/bin/
|
install -D -m 0755 babeld-service $(DESTDIR)/bin/
|
||||||
|
install -D -m 0755 eigrpd-service $(DESTDIR)/bin/
|
||||||
install -D -m 0755 set-options $(DESTDIR)/bin/
|
install -D -m 0755 set-options $(DESTDIR)/bin/
|
||||||
install -D -m 0755 show_version $(DESTDIR)/bin/
|
install -D -m 0755 show_version $(DESTDIR)/bin/
|
||||||
|
|
||||||
|
|
13
snapcraft/scripts/eigrpd-service
Normal file
13
snapcraft/scripts/eigrpd-service
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e -x
|
||||||
|
|
||||||
|
if ! [ -e $SNAP_DATA/eigrpd.conf ]; then
|
||||||
|
cp $SNAP/etc/frr/eigrpd.conf.default $SNAP_DATA/eigrpd.conf
|
||||||
|
fi
|
||||||
|
exec $SNAP/sbin/eigrpd \
|
||||||
|
-f $SNAP_DATA/eigrpd.conf \
|
||||||
|
--pid_file $SNAP_DATA/eigrpd.pid \
|
||||||
|
--socket $SNAP_DATA/zsock \
|
||||||
|
--vty_socket $SNAP_DATA
|
||||||
|
|
|
@ -4,7 +4,7 @@ summary: FRRouting BGP/OSPFv2/OSPFv3/ISIS/RIP/RIPng/PIM/LDP routing daemon
|
||||||
description: BGP/OSPFv2/OSPFv3/ISIS/RIP/RIPng/PIM routing daemon
|
description: BGP/OSPFv2/OSPFv3/ISIS/RIP/RIPng/PIM routing daemon
|
||||||
FRRouting (FRR) is free software which manages TCP/IP based routing
|
FRRouting (FRR) is free software which manages TCP/IP based routing
|
||||||
protocols. It supports BGP4, BGP4+, OSPFv2, OSPFv3, IS-IS, RIPv1, RIPv2,
|
protocols. It supports BGP4, BGP4+, OSPFv2, OSPFv3, IS-IS, RIPv1, RIPv2,
|
||||||
RIPng, PIM, LDP and Babel as well as the IPv6 versions of these.
|
RIPng, PIM, LDP, Babel, EIGRP as well as the IPv6 versions of these.
|
||||||
FRRouting (frr) is a fork of Quagga.
|
FRRouting (frr) is a fork of Quagga.
|
||||||
confinement: strict
|
confinement: strict
|
||||||
grade: devel
|
grade: devel
|
||||||
|
@ -98,6 +98,13 @@ apps:
|
||||||
- network
|
- network
|
||||||
- network-bind
|
- network-bind
|
||||||
- network-control
|
- network-control
|
||||||
|
eigrpd:
|
||||||
|
command: bin/eigrpd-service
|
||||||
|
daemon: simple
|
||||||
|
plugs:
|
||||||
|
- network
|
||||||
|
- network-bind
|
||||||
|
- network-control
|
||||||
set:
|
set:
|
||||||
command: bin/set-options
|
command: bin/set-options
|
||||||
zebra-debug:
|
zebra-debug:
|
||||||
|
@ -166,6 +173,12 @@ apps:
|
||||||
- network
|
- network
|
||||||
- network-bind
|
- network-bind
|
||||||
- network-control
|
- network-control
|
||||||
|
eigrpd-debug:
|
||||||
|
command: sbin/eigrpd -f $SNAP_DATA/eigrpd.conf --pid_file $SNAP_DATA/eigrpd.pid --socket $SNAP_DATA/zsock --vty_socket $SNAP_DATA
|
||||||
|
plugs:
|
||||||
|
- network
|
||||||
|
- network-bind
|
||||||
|
- network-control
|
||||||
|
|
||||||
parts:
|
parts:
|
||||||
frr:
|
frr:
|
||||||
|
@ -245,6 +258,7 @@ parts:
|
||||||
ldpd.conf.default: etc/frr/ldpd.conf.default
|
ldpd.conf.default: etc/frr/ldpd.conf.default
|
||||||
nhrpd.conf.default: etc/frr/nhrpd.conf.default
|
nhrpd.conf.default: etc/frr/nhrpd.conf.default
|
||||||
babeld.conf.default: etc/frr/babeld.conf.default
|
babeld.conf.default: etc/frr/babeld.conf.default
|
||||||
|
eigrpd.conf.default: etc/frr/eigrpd.conf.default
|
||||||
vtysh.conf.default: etc/frr/vtysh.conf.default
|
vtysh.conf.default: etc/frr/vtysh.conf.default
|
||||||
frr-scripts:
|
frr-scripts:
|
||||||
plugin: make
|
plugin: make
|
||||||
|
|
Loading…
Reference in a new issue