From 00fd1df67a4229bfd1d69975ce6fa9525f45bbaf Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sat, 9 Jan 2021 12:51:37 +0100 Subject: [PATCH] bundles/wide-dhcp6c: stop, then start, instead of restart --- bundles/wide-dhcp6c/files/ip-up | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bundles/wide-dhcp6c/files/ip-up b/bundles/wide-dhcp6c/files/ip-up index 2440f05..d6624a8 100644 --- a/bundles/wide-dhcp6c/files/ip-up +++ b/bundles/wide-dhcp6c/files/ip-up @@ -10,7 +10,9 @@ fi if systemctl is-active wide-dhcpv6-client; then - systemctl restart wide-dhcpv6-client + systemctl stop wide-dhcpv6-client + sleep 1 + systemctl sart wide-dhcpv6-client else systemctl start wide-dhcpv6-client fi