diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-18 16:43:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-18 16:43:37 +0200 |
commit | 4a8dd6bccfde210c944ac83af105b133847eda65 (patch) | |
tree | 110499f16da48dfe80866f053271efee768bd2da /data/templates/dhcp-server/dhcpdv6.conf.tmpl | |
parent | bd50d51f1e49724c9a01e9ce5c0aefa04ec3e913 (diff) | |
parent | f71f9b4a2c40ae4d617f7ddefbdaabb136e887b3 (diff) | |
download | vyos-1x-4a8dd6bccfde210c944ac83af105b133847eda65.tar.gz vyos-1x-4a8dd6bccfde210c944ac83af105b133847eda65.zip |
Merge pull request #1288 from sever-sever/T4344-equl
dhcp-server: T4344: Fix underscores for shared network name
Diffstat (limited to 'data/templates/dhcp-server/dhcpdv6.conf.tmpl')
-rw-r--r-- | data/templates/dhcp-server/dhcpdv6.conf.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/dhcp-server/dhcpdv6.conf.tmpl b/data/templates/dhcp-server/dhcpdv6.conf.tmpl index 45d629928..d5f277463 100644 --- a/data/templates/dhcp-server/dhcpdv6.conf.tmpl +++ b/data/templates/dhcp-server/dhcpdv6.conf.tmpl @@ -15,7 +15,7 @@ option dhcp6.name-servers {{ global_parameters.name_server | join(', ') }}; # Shared network configration(s) {% if shared_network_name is defined and shared_network_name is not none %} {% for network, network_config in shared_network_name.items() if network_config.disable is not defined %} -shared-network {{ network | replace('_','-') }} { +shared-network {{ network }} { {% if network_config.common_options is defined and network_config.common_options is not none %} {% if network_config.common_options.info_refresh_time is defined and network_config.common_options.info_refresh_time is not none %} option dhcp6.info-refresh-time {{ network_config.common_options.info_refresh_time }}; @@ -117,7 +117,7 @@ shared-network {{ network | replace('_','-') }} { {% endfor %} {% endif %} on commit { - set shared-networkname = "{{ network | replace('_','-') }}"; + set shared-networkname = "{{ network }}"; } } {% endfor %} |