diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-10-11 20:48:40 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-10-11 20:48:40 +0200 |
commit | 190b6612f65382917457f827eddb7b627f3b4fb0 (patch) | |
tree | 5d620e5d0bd57c1d7c1925f65dadce45f7be9c6a /src | |
parent | 0142810c06662a1fd652c593246cc0c64dd5b3fd (diff) | |
download | vyos-1x-190b6612f65382917457f827eddb7b627f3b4fb0.tar.gz vyos-1x-190b6612f65382917457f827eddb7b627f3b4fb0.zip |
broadcast-relay: T2712: enable render trim_blocks
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/bcast_relay.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/conf_mode/bcast_relay.py b/src/conf_mode/bcast_relay.py index 4a47b9246..78daeb6be 100755 --- a/src/conf_mode/bcast_relay.py +++ b/src/conf_mode/bcast_relay.py @@ -78,7 +78,8 @@ def generate(relay): continue config['instance'] = instance - render(config_file_base + instance, 'bcast-relay/udp-broadcast-relay.tmpl', config) + render(config_file_base + instance, 'bcast-relay/udp-broadcast-relay.tmpl', + config, trim_blocks=True) return None |