diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-08-23 11:50:41 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-08-23 11:50:44 +0200 |
commit | 52a78e3d76672a66e27c29b70102c844757e2055 (patch) | |
tree | f4df881b39849baa8cf0856028c7300bde9e8d40 /data/templates/pppoe/ip-down.script.tmpl | |
parent | c8ea23cc3d3cab6e384b143d7d22030a9085f1a2 (diff) | |
download | vyos-1x-52a78e3d76672a66e27c29b70102c844757e2055.tar.gz vyos-1x-52a78e3d76672a66e27c29b70102c844757e2055.zip |
dhcpv6-pd: pppoe: T2677: fix dhcpc6 startup
DHCPv6 client was not started as it used the old dict keys.
Diffstat (limited to 'data/templates/pppoe/ip-down.script.tmpl')
-rw-r--r-- | data/templates/pppoe/ip-down.script.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/pppoe/ip-down.script.tmpl b/data/templates/pppoe/ip-down.script.tmpl index 7b1952a80..c2d0cd09a 100644 --- a/data/templates/pppoe/ip-down.script.tmpl +++ b/data/templates/pppoe/ip-down.script.tmpl @@ -30,7 +30,7 @@ vtysh -c "conf t" ${VRF_NAME} -c "no ipv6 route ::/0 {{ ifname }} ${VRF_NAME}" {% endif %} {% endif %} -{% if dhcpv6_options is defined and dhcpv6_options.prefix_delegation is defined %} +{% if dhcpv6_options is defined and dhcpv6_options.pd is defined %} # Stop wide dhcpv6 client systemctl stop dhcp6c@{{ ifname }}.service {% endif %} |