summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-12-13 13:56:12 +0100
committerChristian Breunig <christian@breunig.cc>2024-12-16 22:24:50 +0100
commite1a4ff9b93070bd772c0b53ae01a87b84d27bda6 (patch)
tree4a07394122cb64bcfa6938d99394afd4190da20b /python
parent7d99257902c2d638dbf9a8a095660d6aa0d92e38 (diff)
downloadvyos-1x-e1a4ff9b93070bd772c0b53ae01a87b84d27bda6.tar.gz
vyos-1x-e1a4ff9b93070bd772c0b53ae01a87b84d27bda6.zip
frr: T6746: reference common daemon definition in vyos.frrender
Do not use custom daemon definitions like bgpd - re-use them from e.g. vyos.frrender.bgp_daemon
Diffstat (limited to 'python')
-rw-r--r--python/vyos/frrender.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/vyos/frrender.py b/python/vyos/frrender.py
index ead893ff9..95d6c7243 100644
--- a/python/vyos/frrender.py
+++ b/python/vyos/frrender.py
@@ -36,11 +36,19 @@ frr_protocols = ['babel', 'bfd', 'bgp', 'eigrp', 'isis', 'mpls', 'nhrp',
'openfabric', 'ospf', 'ospfv3', 'pim', 'pim6', 'rip',
'ripng', 'rpki', 'segment_routing', 'static']
+babel_daemon = 'babeld'
+bfd_daemon = 'bfdd'
bgp_daemon = 'bgpd'
isis_daemon = 'isisd'
+ldpd_daemon = 'ldpd'
mgmt_daemon = 'mgmtd'
openfabric_daemon = 'fabricd'
+ospf_daemon = 'ospfd'
+ospf6_daemon = 'ospf6d'
pim_daemon = 'pimd'
+pim6_daemon = 'pim6d'
+rip_daemon = 'ripd'
+ripng_daemon = 'ripngd'
zebra_daemon = 'zebra'
class FRRender: