#!/bin/sh
process=`ps x | grep ./dhcp6client | grep -v grep | head -1 | cut -b1-5`
if [ "x$process" = "x" ]
then
echo "DHCP client not running"
else
echo "Sending SIGUSR1 signal to client"
kill -10 $process
fi
