Skip to content

Commit

Permalink
snapcraft: Add eigrp daemon to snap package
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
  • Loading branch information
mwinter-osr committed May 1, 2018
1 parent fcf7458 commit 1e40b13
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 2 deletions.
Empty file.
1 change: 1 addition & 0 deletions snapcraft/scripts/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ install:
install -D -m 0755 ldpd-service $(DESTDIR)/bin/
install -D -m 0755 nhrpd-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 show_version $(DESTDIR)/bin/

13 changes: 13 additions & 0 deletions snapcraft/scripts/eigrpd-service
Original file line number Diff line number Diff line change
@@ -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

18 changes: 16 additions & 2 deletions snapcraft/snapcraft.yaml.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
FRRouting (FRR) is free software which manages TCP/IP based routing
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.
confinement: strict
grade: devel
Expand Down Expand Up @@ -98,6 +98,13 @@ apps:
- network
- network-bind
- network-control
eigrpd:
command: bin/eigrpd-service
daemon: simple
plugs:
- network
- network-bind
- network-control
set:
command: bin/set-options
zebra-debug:
Expand Down Expand Up @@ -166,7 +173,13 @@ apps:
- network
- network-bind
- 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:
frr:
build-packages:
Expand Down Expand Up @@ -245,6 +258,7 @@ parts:
ldpd.conf.default: etc/frr/ldpd.conf.default
nhrpd.conf.default: etc/frr/nhrpd.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
frr-scripts:
plugin: make
Expand Down

0 comments on commit 1e40b13

Please sign in to comment.