12 lines
182 B
Text
12 lines
182 B
Text
|
#!/bin/bash
|
||
|
|
||
|
INTERFACE=$1
|
||
|
|
||
|
if [[ "$INTERFACE" != "${source}" ]]
|
||
|
then
|
||
|
echo "wide-dhcp6c is not configured to work on $INTERFACE"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
systemctl start wide-dhcpv6-client
|