]> git.proxmox.com Git - mirror_frr.git/commitdiff
debianpkg, tools: Add fabricd to distribution scripts
authorChristian Franke <chris@opensourcerouting.org>
Wed, 24 Oct 2018 02:31:09 +0000 (04:31 +0200)
committerChristian Franke <chris@opensourcerouting.org>
Wed, 24 Oct 2018 13:50:56 +0000 (15:50 +0200)
Signed-off-by: Christian Franke <chris@opensourcerouting.org>
debianpkg/frr.logrotate
debianpkg/frr.manpages
debianpkg/tests/daemons
tools/etc/frr/daemons
tools/etc/frr/daemons.conf
tools/etc/rsyslog.d/45-frr.conf
tools/frr.in

index 750b9aef138695d974e7100fe27b11acc3f718fe..1dc9122ac4b5a7c271a1798241f82d204b1f729a 100644 (file)
@@ -17,7 +17,7 @@
             # open, as well as the daemons, so always signal the daemons.
             # It's safe, a NOP if (only) syslog is being used.
             for i in babeld bgpd eigrpd isisd ldpd nhrpd ospf6d ospfd \
-                pimd ripd ripngd zebra staticd ; do
+                pimd ripd ripngd zebra staticd fabricd; do
                 if [ -e /var/run/frr/$i.pid ] ; then
                     pids="$pids $(cat /var/run/frr/$i.pid)"
                 fi
index d4bb920b464cecc1ef79951f5c6a96f9851fb003..f5aa972304242fafeec4a5874f3cf4c285839521 100644 (file)
@@ -13,3 +13,4 @@ doc/manpages/_build/man/zebra.8
 doc/manpages/_build/man/isisd.8
 doc/manpages/_build/man/watchfrr.8
 doc/manpages/_build/man/mtracebis.8
+doc/manpages/_build/man/fabricd.8
index ac35ecd950816ede2e93028156af2c003d99e94b..43966c83478aeb629d232076ed58736763fcb4ea 100644 (file)
@@ -6,7 +6,7 @@ set -e
 
 # modify config file to enable all daemons and copy config files
 CONFIG_FILE=/etc/frr/daemons
-DAEMONS=("zebra" "bgpd" "ospfd" "ospf6d" "ripd" "ripngd" "isisd" "pimd")
+DAEMONS=("zebra" "bgpd" "ospfd" "ospf6d" "ripd" "ripngd" "isisd" "pimd" "fabricd")
 
 for daemon in "${DAEMONS[@]}"
 do
index 474b299d90003c5baef343c86166270e8a5532d9..1514082e9033886915a44cb06b797d44b3ae329a 100644 (file)
@@ -36,3 +36,4 @@ babeld=no
 sharpd=no
 pbrd=no
 bfdd=no
+fabricd=no
index 640437f441ce1fe0bef1021bb5ae6b4356c0669d..bd0e370d1eab152f49384c745aac64687f5afe38 100644 (file)
@@ -20,6 +20,7 @@ sharpd_options="  --daemon -A 127.0.0.1"
 pbrd_options="  --daemon -A 127.0.0.1"
 staticd_options="  --daemon -A 127.0.0.1"
 bfdd_options="  --daemon -A 127.0.0.1"
+fabricd_options="  --daemon -A 127.0.0.1"
 
 # The list of daemons to watch is automatically generated by the init script.
 watchfrr_enable=yes
index ff7cd48318ea6b95d0b3647b823f16f21ae30d0c..4612e8beaf7a200bd3f16d1dabab1c3e5a69762b 100644 (file)
@@ -8,6 +8,7 @@ if  $programname == 'babeld' or
     $programname == 'eigrpd' or
     $programname == 'frr' or
     $programname == 'isisd' or
+    $programname == 'fabricd' or
     $programname == 'ldpd' or
     $programname == 'nhrpd' or
     $programname == 'ospf6d' or
@@ -24,6 +25,7 @@ if  $programname == 'babeld' or
     $programname == 'eigrpd' or
     $programname == 'frr' or
     $programname == 'isisd' or
+    $programname == 'fabricd' or
     $programname == 'ldpd' or
     $programname == 'nhrpd' or
     $programname == 'ospf6d' or
index c57ef6baf9afb90ea1c13bf216d945e0868c9ec3..ee8dc883dc3f97fe5c761e20c0c2f4eaa4689bba 100755 (executable)
@@ -25,7 +25,7 @@ FRR_VTY_GROUP="@enable_vty_group@" # frrvty
 # Local Daemon selection may be done by using /etc/frr/daemons.
 # See /usr/share/doc/frr/README.Debian.gz for further information.
 # Keep zebra first and do not list watchfrr!
-DAEMONS="zebra bgpd ripd ripngd ospfd ospf6d isisd babeld pimd ldpd nhrpd eigrpd sharpd pbrd staticd bfdd"
+DAEMONS="zebra bgpd ripd ripngd ospfd ospf6d isisd babeld pimd ldpd nhrpd eigrpd sharpd pbrd staticd bfdd fabricd"
 MAX_INSTANCES=5
 RELOAD_SCRIPT="$D_PATH/frr-reload.py"