summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorErik Kooistra <me@erikkooistra.nl>2021-03-29 15:15:12 +0200
committerErik Kooistra <me@erikkooistra.nl>2021-03-29 15:42:35 +0200
commitf8ca116ef0471036efdd1c64b33ce4591624679b (patch)
tree5fccbed1d7704866f70b44fd8d433bb8201342b1 /tools
parentMerge pull request #8285 from donaldsharp/rpki_find (diff)
downloadfrr-f8ca116ef0471036efdd1c64b33ce4591624679b.tar.xz
frr-f8ca116ef0471036efdd1c64b33ce4591624679b.zip
tools: Added pathd to the relevant init files
Currently pathd is missing from the deamon list in frrcommon with this missing frrinit can't start pathd if it is added to the deamon file. This commit adds it to the frrcommon deamon list and updates the example deamon file. Signed-off-by: Erik Kooistra <me@erikkooistra.nl>
Diffstat (limited to 'tools')
-rw-r--r--tools/etc/frr/daemons2
-rw-r--r--tools/frrcommon.sh.in2
2 files changed, 3 insertions, 1 deletions
diff --git a/tools/etc/frr/daemons b/tools/etc/frr/daemons
index f6d512be7..b1526888e 100644
--- a/tools/etc/frr/daemons
+++ b/tools/etc/frr/daemons
@@ -30,6 +30,7 @@ pbrd=no
bfdd=no
fabricd=no
vrrpd=no
+pathd=no
#
# If this option is set the /etc/init.d/frr script automatically loads
@@ -55,6 +56,7 @@ staticd_options="-A 127.0.0.1"
bfdd_options=" -A 127.0.0.1"
fabricd_options="-A 127.0.0.1"
vrrpd_options=" -A 127.0.0.1"
+pathd_options=" -A 127.0.0.1"
# configuration profile
#
diff --git a/tools/frrcommon.sh.in b/tools/frrcommon.sh.in
index 2d925dbac..475e56cf7 100644
--- a/tools/frrcommon.sh.in
+++ b/tools/frrcommon.sh.in
@@ -35,7 +35,7 @@ FRR_DEFAULT_PROFILE="@DFLT_NAME@" # traditional / datacenter
# - keep zebra first
# - watchfrr does NOT belong in this list
-DAEMONS="zebra bgpd ripd ripngd ospfd ospf6d isisd babeld pimd ldpd nhrpd eigrpd sharpd pbrd staticd bfdd fabricd vrrpd"
+DAEMONS="zebra bgpd ripd ripngd ospfd ospf6d isisd babeld pimd ldpd nhrpd eigrpd sharpd pbrd staticd bfdd fabricd vrrpd pathd"
RELOAD_SCRIPT="$D_PATH/frr-reload.py"
#