diff options
author | Christian Breunig <christian@breunig.cc> | 2024-12-18 19:25:20 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-12-18 22:40:05 +0100 |
commit | 77628e49379066e07b4046a00007187263e7206b (patch) | |
tree | e7c031a011e109b314ac2f1a6775c8e5e6e742f4 /src/conf_mode/vrf.py | |
parent | 75de2fa91c7d727eef9d38d045e0e04fba218695 (diff) | |
download | vyos-1x-77628e49379066e07b4046a00007187263e7206b.tar.gz vyos-1x-77628e49379066e07b4046a00007187263e7206b.zip |
frrender: T6746: move get_frrender_dict from vyos.configdict to this module
Keep all FRRender stuff in one place.
Diffstat (limited to 'src/conf_mode/vrf.py')
-rwxr-xr-x | src/conf_mode/vrf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/vrf.py b/src/conf_mode/vrf.py index 6533f493f..74780b601 100755 --- a/src/conf_mode/vrf.py +++ b/src/conf_mode/vrf.py @@ -19,11 +19,11 @@ from jmespath import search from json import loads from vyos.config import Config -from vyos.configdict import get_frrender_dict from vyos.configdict import node_changed from vyos.configverify import verify_route_map from vyos.firewall import conntrack_required from vyos.frrender import FRRender +from vyos.frrender import get_frrender_dict from vyos.ifconfig import Interface from vyos.template import render from vyos.utils.dict import dict_search |