#!/bin/sh
#
# avahi-dnsconfd:	Starts the Avahi dns configuration daemon
#
# chkconfig:		345 35 65
#
# description:	avahi-dnsconfd connects to a running avahi-daemon and runs the script \
#		/etc/avahi/dnsconf.action for each unicast DNS server that is announced \
#		on the local LAN. This is useful for configuring unicast DNS servers in \
#		a DHCP-like fashion with mDNS.
#


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

# Get network config
. /etc/sysconfig/network

# Check that networking is up.
if is_yes "${NETWORKING}"; then
	if [ ! -f /var/lock/subsys/network ]; then
		msg_network_down avahi-dnsconfd
		exit 1
	fi
else
	exit 0
fi


# See how we were called.
case "$1" in
  start)
	# Check if the service is already running?
	if [ ! -f /var/lock/subsys/avahi-dnsconfd ]; then
		msg_starting avahi-dnsconfd
		daemon avahi-dnsconfd -D
		RETVAL=$?
		[ $RETVAL -eq 0 ] && touch /var/lock/subsys/avahi-dnsconfd
	else
		msg_already_running avahi-dnsconfd
	fi
	;;
  stop)
	if [ -f /var/lock/subsys/avahi-dnsconfd ]; then
		# Stop daemons.
		msg_stopping avahi-dnsconfd
		avahi-dnsconfd -k
		rm -f /var/lock/subsys/avahi-dnsconfd
		ok
	else
		msg_not_running avahi-dnsconfd
	fi
	;;
  restart)
	$0 stop
	$0 start
	exit $?
	;;
  reload)
	if [ -f /var/lock/subsys/avahi-dnsconfd ]; then
		msg_reloading avahi-dnsconfd
		avahi-dnsconfd -r
		RETVAL=$?
	else
		msg_not_running avahi-dnsconfd >&2
		RETVAL=7
	fi
	;;
  force-reload)
	$0 reload
	exit $?
	;;
  status)
	status avahi-dnsconfd
	RETVAL=$?
	;;
  *)
	msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
	exit 3
esac

exit $RETVAL

# This must be last line !
# vi:syntax=sh:tw=78:ts=4:sw=4
