diff options
author | 1vivy <1vivy@tutanota.com> | 2023-07-23 13:31:00 -0400 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-07-31 13:58:24 +0200 |
commit | 1d86092328ef43368fcb0bf348c14a01466e5892 (patch) | |
tree | bb234fb0cdca706f7e1cc77f40a9f1ea7819131c /python | |
parent | 230c3f5b9fedf055c15fc1e968b508c0fcaf0c59 (diff) | |
download | vyos-1x-1d86092328ef43368fcb0bf348c14a01466e5892.tar.gz vyos-1x-1d86092328ef43368fcb0bf348c14a01466e5892.zip |
dhcpv6-pd: T5387: add support for no-release flag
When no-release is specified, dhcp6c client will not release allocated address or prefix on client exit.
vyos.ifconfig: dhcpv6: T5387: re-use options_file for no release flag [WIP]
* Todo: render Jinja2 template and fill it
vyos.ifconfig: dhcpv6: T5387: finish options_file and no release flag in cli
vyos.ifconfig: dhcpv6: T5387: fix missing/wrong end tag
vyos.ifconfig: dhcpv6: T5387: fix options, no var for -n
dhcpv6-client: T5387: fix missing / from filepaths
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ifconfig/interface.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py index 120f2131b..99ddb2021 100644 --- a/python/vyos/ifconfig/interface.py +++ b/python/vyos/ifconfig/interface.py @@ -1288,9 +1288,11 @@ class Interface(Control): ifname = self.ifname config_file = f'/run/dhcp6c/dhcp6c.{ifname}.conf' + options_file = f'/run/dhcp6c/dhcp6c.{ifname}.options' systemd_service = f'dhcp6c@{ifname}.service' if enable and 'disable' not in self._config: + render(options_file, 'dhcp-client/dhcp6c_daemon-options.j2', self._config) render(config_file, 'dhcp-client/ipv6.j2', self._config) # We must ignore any return codes. This is required to enable |