11 lines
182 B
Bash
11 lines
182 B
Bash
#!/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
|