diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-04-05 20:14:22 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-04-06 00:03:43 +0200 |
commit | 40c342f3a84a75acc9f41c83cb735e966da7c47e (patch) | |
tree | d4e5665913c8fdae6710a30a8230c372d7868f54 | |
parent | 99b2bfc74f30987d00384e384e8caa4fad28528b (diff) | |
download | vyos-1x-40c342f3a84a75acc9f41c83cb735e966da7c47e.tar.gz vyos-1x-40c342f3a84a75acc9f41c83cb735e966da7c47e.zip |
[dhcpv6-relay] T1322: bugfix on multiple listen interfaces
Same cause as with commit c6988bb4110541478dad74d0b892fd4643ed530a
-rwxr-xr-x | src/conf_mode/dhcpv6_relay.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/dhcpv6_relay.py b/src/conf_mode/dhcpv6_relay.py index 8b8ceb358..5868abe8a 100755 --- a/src/conf_mode/dhcpv6_relay.py +++ b/src/conf_mode/dhcpv6_relay.py @@ -30,7 +30,7 @@ config_tmpl = """ ### Autogenerated by dhcpv6_relay.py ### # Defaults for isc-dhcpv6-relay initscript sourced by /etc/init.d/isc-dhcpv6-relay -OPTIONS="-6 -l {{ listen_addr | join('-l ') }} -u {{ upstream_addr | join(' -u ') }} {{ options | join(' ') }}" +OPTIONS="-6 -l {{ listen_addr | join(' -l ') }} -u {{ upstream_addr | join(' -u ') }} {{ options | join(' ') }}" """ |