diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-13 20:32:23 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-04-13 20:32:23 +0200 |
commit | 7a2903342c454e23520fe2800d58dcae94305e6d (patch) | |
tree | 080432a7ab86dd90f0a4425b875804c000c7ab6c /src | |
parent | b9303c979d805b9c919deed3de2b7023cce1c7e3 (diff) | |
download | vyos-1x-7a2903342c454e23520fe2800d58dcae94305e6d.tar.gz vyos-1x-7a2903342c454e23520fe2800d58dcae94305e6d.zip |
op-mode: T2185: adjust dhcpv4/v6 systemd service name
Diffstat (limited to 'src')
-rwxr-xr-x | src/op_mode/show_dhcp.py | 2 | ||||
-rwxr-xr-x | src/op_mode/show_dhcpv6.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/op_mode/show_dhcp.py b/src/op_mode/show_dhcp.py index a79033f69..c49e604b7 100755 --- a/src/op_mode/show_dhcp.py +++ b/src/op_mode/show_dhcp.py @@ -193,7 +193,7 @@ if __name__ == '__main__': sys.exit(0) # if dhcp server is down, inactive leases may still be shown as active, so warn the user. - if call('systemctl -q is-active isc-dhcpv4-server.service') != 0: + if call('systemctl -q is-active isc-dhcp-server.service') != 0: print("WARNING: DHCP server is configured but not started. Data may be stale.") if args.leases: diff --git a/src/op_mode/show_dhcpv6.py b/src/op_mode/show_dhcpv6.py index 18baa5517..d686defc0 100755 --- a/src/op_mode/show_dhcpv6.py +++ b/src/op_mode/show_dhcpv6.py @@ -179,7 +179,7 @@ if __name__ == '__main__': sys.exit(0) # if dhcp server is down, inactive leases may still be shown as active, so warn the user. - if call('systemctl -q is-active isc-dhcpv6-server.service') != 0: + if call('systemctl -q is-active isc-dhcp-server6.service') != 0: print("WARNING: DHCPv6 server is configured but not started. Data may be stale.") if args.leases: |