diff options
| author | Martin Winter <mwinter@opensourcerouting.org> | 2018-04-30 18:53:18 -0700 | 
|---|---|---|
| committer | Martin Winter <mwinter@opensourcerouting.org> | 2018-04-30 18:53:18 -0700 | 
| commit | c1184db82bccc1091cf6d0998825415af0a2fea2 (patch) | |
| tree | 299ab1f61283459ed4786c64ca7d734148618962 /snapcraft | |
| parent | 1e40b13af437e93d18d1cccb281e96f96fce667e (diff) | |
snapcraft: Add PBR daemon to snap package
Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
Diffstat (limited to 'snapcraft')
| -rw-r--r-- | snapcraft/defaults/pbrd.conf.default | 0 | ||||
| -rw-r--r-- | snapcraft/scripts/Makefile | 1 | ||||
| -rw-r--r-- | snapcraft/scripts/pbrd-service | 13 | ||||
| -rw-r--r-- | snapcraft/snapcraft.yaml.in | 17 | 
4 files changed, 30 insertions, 1 deletions
diff --git a/snapcraft/defaults/pbrd.conf.default b/snapcraft/defaults/pbrd.conf.default new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/snapcraft/defaults/pbrd.conf.default diff --git a/snapcraft/scripts/Makefile b/snapcraft/scripts/Makefile index 5a65aa9013..110f4b2878 100644 --- a/snapcraft/scripts/Makefile +++ b/snapcraft/scripts/Makefile @@ -14,6 +14,7 @@ install:  	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 pbrd-service $(DESTDIR)/bin/  	install -D -m 0755 set-options $(DESTDIR)/bin/  	install -D -m 0755 show_version $(DESTDIR)/bin/ diff --git a/snapcraft/scripts/pbrd-service b/snapcraft/scripts/pbrd-service new file mode 100644 index 0000000000..a9265a1ae6 --- /dev/null +++ b/snapcraft/scripts/pbrd-service @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e -x + +if ! [ -e $SNAP_DATA/pbrd.conf ]; then +    cp $SNAP/etc/frr/pbrd.conf.default $SNAP_DATA/pbrd.conf +fi +exec $SNAP/sbin/pbrd \ +    -f $SNAP_DATA/pbrd.conf \ +    --pid_file $SNAP_DATA/pbrd.pid \ +    --socket $SNAP_DATA/zsock \ +    --vty_socket $SNAP_DATA + diff --git a/snapcraft/snapcraft.yaml.in b/snapcraft/snapcraft.yaml.in index 13c2348e1a..b4e1812c86 100644 --- a/snapcraft/snapcraft.yaml.in +++ b/snapcraft/snapcraft.yaml.in @@ -4,7 +4,8 @@ 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, Babel, EIGRP as well as the IPv6 versions of these. + RIPng, PIM, LDP, Babel, EIGRP and PBR (Policy-based routing) as well as + the IPv6 versions of these.   FRRouting (frr) is a fork of Quagga.  confinement: strict  grade: devel @@ -105,6 +106,13 @@ apps:              - network              - network-bind              - network-control +    pbrd: +        command: bin/pbrd-service +        daemon: simple +        plugs: +            - network +            - network-bind +            - network-control      set:          command: bin/set-options      zebra-debug: @@ -179,6 +187,12 @@ apps:              - network              - network-bind              - network-control +    pbrd-debug: +        command: sbin/pbrd -f $SNAP_DATA/pbrd.conf --pid_file $SNAP_DATA/pbrd.pid --socket $SNAP_DATA/zsock --vty_socket $SNAP_DATA +        plugs: +            - network +            - network-bind +            - network-control  parts:      frr:  @@ -259,6 +273,7 @@ parts:              nhrpd.conf.default: etc/frr/nhrpd.conf.default              babeld.conf.default: etc/frr/babeld.conf.default              eigrpd.conf.default: etc/frr/eigrpd.conf.default +            pbrd.conf.default: etc/frr/pbrd.conf.default              vtysh.conf.default: etc/frr/vtysh.conf.default      frr-scripts:          plugin: make  | 
