diff options
author | Christian Breunig <christian@breunig.cc> | 2024-06-27 21:34:14 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-06-27 21:34:14 +0200 |
commit | 5ade35255b3d8438aa6082fe56ae459d50cdc0a5 (patch) | |
tree | fb01390cd67d4dbb25b4697c19efde4774c16535 /src/op_mode/dhcp.py | |
parent | 7d91768a746a000bf26d737eb1612536d0454ad1 (diff) | |
download | vyos-1x-5ade35255b3d8438aa6082fe56ae459d50cdc0a5.tar.gz vyos-1x-5ade35255b3d8438aa6082fe56ae459d50cdc0a5.zip |
op-mode: T6524: rewrite "release dhcp(v6) interface" to new op-mode format
Diffstat (limited to 'src/op_mode/dhcp.py')
-rwxr-xr-x | src/op_mode/dhcp.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/op_mode/dhcp.py b/src/op_mode/dhcp.py index f6029c748..6f57f22a5 100755 --- a/src/op_mode/dhcp.py +++ b/src/op_mode/dhcp.py @@ -510,6 +510,16 @@ def renew_client_lease(raw: bool, family: ArgFamily, interface: str): else: call(f'systemctl restart dhclient@{interface}.service') +@_verify_client +def release_client_lease(raw: bool, family: ArgFamily, interface: str): + if not raw: + v = 'v6' if family == 'inet6' else '' + print(f'Release DHCP{v} client on interface {interface}...') + if family == 'inet6': + call(f'systemctl stop dhcp6c@{interface}.service') + else: + call(f'systemctl stop dhclient@{interface}.service') + if __name__ == '__main__': try: res = vyos.opmode.run(sys.modules[__name__]) |