summaryrefslogtreecommitdiff
path: root/src/conf_mode/dhcpv6_server.py
diff options
context:
space:
mode:
authorJernej Jakob <jernej.jakob@gmail.com>2019-06-16 15:27:03 +0200
committerChristian Poessinger <christian@poessinger.com>2019-06-16 22:54:54 +0200
commitb04a9791226f7953cfa740804ec0d43745605f49 (patch)
tree84fb7fa0d7bf7785507bb580f6621183984c2efd /src/conf_mode/dhcpv6_server.py
parentfc2cc0f9b660408d5fc0cffcaffc33bfbc8ca5f2 (diff)
downloadvyos-1x-b04a9791226f7953cfa740804ec0d43745605f49.tar.gz
vyos-1x-b04a9791226f7953cfa740804ec0d43745605f49.zip
T1439: remove quotes around dhcp6.client-id
Diffstat (limited to 'src/conf_mode/dhcpv6_server.py')
-rwxr-xr-xsrc/conf_mode/dhcpv6_server.py2
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 %}