#!/bin/sh
process=`ps -C dhcp6server | tail -1 | cut -b1-5`
if [ "x$process"  = "x  PID" ]
then
echo "DHCP server not running"
else
echo "Sending SIGUSR1 signal to Server for reconfgure"
kill -30 $process
fi
