diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-13 22:53:16 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-13 22:55:46 +0200 |
commit | 32ad92cd87b229d35840bd92c44fc70a6638c506 (patch) | |
tree | 60ab44e63a7805c7ec6786dcef3da3c8cd6263ff /data/templates | |
parent | 90a84a0bb1f7293a8df76f3449efcc7da813c425 (diff) | |
download | vyos-1x-32ad92cd87b229d35840bd92c44fc70a6638c506.tar.gz vyos-1x-32ad92cd87b229d35840bd92c44fc70a6638c506.zip |
udp-broadcast-relay: T4333: migrate to new vyos_defined Jinja2 test
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/bcast-relay/udp-broadcast-relay.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/bcast-relay/udp-broadcast-relay.tmpl b/data/templates/bcast-relay/udp-broadcast-relay.tmpl index 7b2b9b1a2..75740e04c 100644 --- a/data/templates/bcast-relay/udp-broadcast-relay.tmpl +++ b/data/templates/bcast-relay/udp-broadcast-relay.tmpl @@ -2,4 +2,4 @@ # UDP broadcast relay configuration for instance {{ id }} {{ '# ' ~ description if description is vyos_defined }} -DAEMON_ARGS="{{ '-s ' ~ address if address is defined }} {{ instance }} {{ port }} {{ interface | join(' ') }}" +DAEMON_ARGS="{{ '-s ' ~ address if address is vyos_defined }} {{ instance }} {{ port }} {{ interface | join(' ') }}" |