bundlewrap/bundles/wide-dhcp6c/files/ip-up

17 lines
283 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 restart wide-dhcpv6-client
else
systemctl start wide-dhcpv6-client
fi