#!/bin/sh
#
# dhcp6c        dhcp6c is an implementation of DHCPv6 server.
#               This shell script takes care of starting and stopping
#               dhcp6c.
#
# chkconfig: 345 66 36
# description: dhcp6c supports server side of Dynamic Host Configuration Protocol for IPv6.
# processname: dhcp6c
# config: /etc/dhcp6c.conf
# config: /etc/sysconfig/dhcp6c
#
# $Id: dhcp6c.init,v 1.7 2008/04/27 12:32:00 glen Exp $

# Source function library
. /etc/rc.d/init.d/functions

# Get network config
. /etc/sysconfig/network

# Get service config
[ -f /etc/sysconfig/dhcp6c ] && . /etc/sysconfig/dhcp6c

# Check that networking is up.
if is_yes "${NETWORKING}"; then
	if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
		msg_network_down "DHCPv6 client daemon"
		exit 1
	fi
else
	exit 0
fi

start() {
	# Check if the service is already running?
	if [ ! -f /var/lock/subsys/dhcp6c ]; then
		msg_starting "DHCPv6 client daemon"
		daemon dhcp6c $DHCP6CIF
		RETVAL=$?
		[ $RETVAL -eq 0 ] && touch /var/lock/subsys/dhcp6c
	else
		msg_already_running "DHCPv6 client daemon"
	fi
}

stop() {
	if [ -f /var/lock/subsys/dhcp6c ]; then
		msg_stopping "DHCPv6 client daemon"
		killproc dhcp6c
		rm -f /var/run/dhcp6c.pid /var/lock/subsys/dhcp6c >/dev/null 2>&1
	else
		msg_not_running "DHCPv6 client daemon"
	fi
}

condrestart() {
	if [ -f /var/lock/subsys/dhcp6c ]; then
		stop
		start
	else
		msg_not_running "DHCPv6 client daemon"
		RETVAL=$1
	fi
}

RETVAL=0
case "$1" in
  start)
  	start
	;;
  stop)
  	stop
	;;
  restart)
	stop
	start
	;;
  try-restart)
	condrestart 0
	;;
  force-reload)
	condrestart 7
	;;
  status)
	status dhcp6c
	exit $?
	;;
  *)
	msg_usage "$0 {start|stop|restart|try-restart|force-reload|status}"
	exit 3
esac

exit $RETVAL
