summaryrefslogtreecommitdiff
path: root/src/conf_mode/protocols_mpls.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-12-08 16:33:45 +0100
committerChristian Breunig <christian@breunig.cc>2024-12-16 22:24:50 +0100
commit779f311e7fe81e3c85de28f13e4e12e33b255483 (patch)
treea7edc34394439a03b019be94cadd1837bcb7f7e0 /src/conf_mode/protocols_mpls.py
parent1666e3d99b8de700c880f09ce6ad5ea8bc7f4568 (diff)
downloadveeos-1x-779f311e7fe81e3c85de28f13e4e12e33b255483.tar.gz
veeos-1x-779f311e7fe81e3c85de28f13e4e12e33b255483.zip
frr: T6746: integrate FRRender class into vyos-configd
When running under vyos-configd only a single apply() is done as last step in the commit algorithm. FRRender class address is provided via an attribute from vyos-configd process.
Diffstat (limited to 'src/conf_mode/protocols_mpls.py')
-rwxr-xr-xsrc/conf_mode/protocols_mpls.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/conf_mode/protocols_mpls.py b/src/conf_mode/protocols_mpls.py
index 2a691f4a4..12899f0b2 100755
--- a/src/conf_mode/protocols_mpls.py
+++ b/src/conf_mode/protocols_mpls.py
@@ -31,8 +31,6 @@ from vyos import ConfigError
from vyos import airbag
airbag.enable()
-frrender = FRRender()
-
def get_config(config=None):
if config:
conf = config
@@ -69,10 +67,13 @@ def verify(config_dict):
return None
def generate(config_dict):
- frrender.generate(config_dict)
+ if 'frrender_cls' not in config_dict:
+ FRRender().generate(config_dict)
+ return None
def apply(config_dict):
- frrender.apply()
+ if 'frrender_cls' not in config_dict:
+ FRRender().apply()
if not has_frr_protocol_in_dict(config_dict, 'mpls'):
return None