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:04:04 +0200 |
commit | 6479b66983b08b26cc842523435fda096f8ccf94 (patch) | |
tree | 87a83b58a0aba822aa911765ddbfc5f37d0c34bb | |
parent | 7196f4d150697e11b676a0cb077130f7179685f3 (diff) | |
download | vyos-1x-6479b66983b08b26cc842523435fda096f8ccf94.tar.gz vyos-1x-6479b66983b08b26cc842523435fda096f8ccf94.zip |
[dhcpv6-relay] T1322: bugfix on multiple listen interfaces
Same cause as with commit c6988bb4110541478dad74d0b892fd4643ed530a
(cherry picked from commit 40c342f3a84a75acc9f41c83cb735e966da7c47e)
-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(' ') }}" """ |