diff options
author | Jernej Jakob <jernej.jakob@gmail.com> | 2019-06-16 15:27:03 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-09-04 21:22:16 +0200 |
commit | 7072bb8eb694fab0b57f63c23bb79dfae7666531 (patch) | |
tree | 398dbce0336c81b2c18d143876a65e0a8bcd2a3c /src/conf_mode/dhcpv6_server.py | |
parent | 3409c233105b8a099134957a509a4a825c45e0fa (diff) | |
download | vyos-1x-7072bb8eb694fab0b57f63c23bb79dfae7666531.tar.gz vyos-1x-7072bb8eb694fab0b57f63c23bb79dfae7666531.zip |
T1439: remove quotes around dhcp6.client-id
(cherry picked from commit b04a9791226f7953cfa740804ec0d43745605f49)
Diffstat (limited to 'src/conf_mode/dhcpv6_server.py')
-rwxr-xr-x | src/conf_mode/dhcpv6_server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/dhcpv6_server.py b/src/conf_mode/dhcpv6_server.py index 1d86727bc..37da3ef25 100755 --- a/src/conf_mode/dhcpv6_server.py +++ b/src/conf_mode/dhcpv6_server.py @@ -94,7 +94,7 @@ shared-network {{ network.name }} { {%- for host in subnet.static_mapping %} {% if not host.disabled -%} host {{ network.name }}_{{ host.name }} { - host-identifier option dhcp6.client-id "{{ host.client_identifier }}"; + host-identifier option dhcp6.client-id {{ host.client_identifier }}; fixed-address6 {{ host.ipv6_address }}; } {%- endif %} |