summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2023-02-14 23:18:53 +0000
committerGitHub <noreply@github.com>2023-02-14 23:18:53 +0000
commit9538a74382ffc7d27bd64baa4ccad7eb090c08cb (patch)
tree13b5776c722217264e0a061eb71755a96d07107d
parent5e56daaff4ec53a387abbd3ad879e916a2bfa373 (diff)
parent0bd37e4718ecbb7deed6f63629d15a2af9e67f75 (diff)
downloadvyos-1x-9538a74382ffc7d27bd64baa4ccad7eb090c08cb.tar.gz
vyos-1x-9538a74382ffc7d27bd64baa4ccad7eb090c08cb.zip
Merge pull request #1820 from nicolas-fort/T5009-restart-relay
T5009: relay: Fix op-mode for restarting dhcp relay service
-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 af4fb2d15..23df92243 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('systemctl restart isc-dhcp-server.service')
+ call('systemctl restart isc-dhcp-relay.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('systemctl restart isc-dhcp-server6.service')
+ call('systemctl restart isc-dhcp-relay6.service')
sys.exit(0)
else: