bundlewrap/bundles/wide-dhcp6c/files/ip-up
2023-11-17 16:56:07 +01:00

20 lines
345 B
Bash

#!/bin/bash
INTERFACE=$1
if [[ "$INTERFACE" != "${source}" ]]
then
echo "wide-dhcp6c is not configured to work on $INTERFACE"
exit 0
fi
if systemctl is-active wide-dhcpv6-client;
then
systemctl stop wide-dhcpv6-client
sleep 60
systemctl start wide-dhcpv6-client
else
sleep 60
systemctl start wide-dhcpv6-client
fi