summaryrefslogtreecommitdiff
path: root/src/op_mode
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-04-13 20:34:54 +0200
committerChristian Poessinger <christian@poessinger.com>2020-04-13 20:34:54 +0200
commitf7334d102315eb56f3526ac464fa77cbc0457859 (patch)
tree0c069512fa4664b839effd29dcc31dccfa5822b1 /src/op_mode
parent7a2903342c454e23520fe2800d58dcae94305e6d (diff)
downloadvyos-1x-f7334d102315eb56f3526ac464fa77cbc0457859.tar.gz
vyos-1x-f7334d102315eb56f3526ac464fa77cbc0457859.zip
op-mode: T2185: adjust restart dhcpv4/v6 systemd service name
Diffstat (limited to 'src/op_mode')
-rwxr-xr-xsrc/op_mode/restart_dhcp_relay.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/op_mode/restart_dhcp_relay.py b/src/op_mode/restart_dhcp_relay.py
index 66dc435b3..af4fb2d15 100755
--- a/src/op_mode/restart_dhcp_relay.py
+++ b/src/op_mode/restart_dhcp_relay.py
@@ -39,7 +39,7 @@ if __name__ == '__main__':
if not c.exists_effective('service dhcp-relay'):
print("DHCP relay service not configured")
else:
- call('sudo systemctl restart isc-dhcp-relay.service')
+ call('systemctl restart isc-dhcp-server.service')
sys.exit(0)
elif args.ipv6:
@@ -47,7 +47,7 @@ if __name__ == '__main__':
if not c.exists_effective('service dhcpv6-relay'):
print("DHCPv6 relay service not configured")
else:
- call('sudo systemctl restart isc-dhcpv6-relay.service')
+ call('systemctl restart isc-dhcp-server6.service')
sys.exit(0)
else: