diff options
author | Jernej Jakob <jernej.jakob@gmail.com> | 2019-06-16 15:27:03 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-06-16 22:54:54 +0200 |
commit | b04a9791226f7953cfa740804ec0d43745605f49 (patch) | |
tree | 84fb7fa0d7bf7785507bb580f6621183984c2efd | |
parent | fc2cc0f9b660408d5fc0cffcaffc33bfbc8ca5f2 (diff) | |
download | vyos-1x-b04a9791226f7953cfa740804ec0d43745605f49.tar.gz vyos-1x-b04a9791226f7953cfa740804ec0d43745605f49.zip |
T1439: remove quotes around dhcp6.client-id
-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 5430097de..aa9c35fa1 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 %} |