#!/bin/sh /etc/rc.common

START=71

pidfile=/var/run/ahcpd.pid

ahcpd_config() {
	local cfg="$1"
	config_get interfaces "$cfg" interfaces
	config_get no_ipv4 "$cfg" no_ipv4
	config_get no_dns "$cfg" no_dns
}

start() {
	config_load ahcpd
	config_foreach ahcpd_config ahcpd
	mkdir -p /var/lib
	[ -r /usr/lib/ahcp/ahcp.dat ] && authority="-a /usr/lib/ahcp/ahcp.dat"
	if [ -e $pidfile ] ; then
		echo "$pidfile exists -- not starting ahcpd." >&2
	else
		/usr/bin/ahcpd -D -I $pidfile ${no_ipv4:+-s} ${no_dns:+-N} $authority $interfaces
	fi
}

stop() {
	[ -e $pidfile ] && kill $(cat $pidfile)
	[ -e $pidfile ] && sleep 2
	[ -e $pidfile ] && sleep 4
	[ -e $pidfile ] && echo "Failed to stop ahcpd ($pidfile still exists)."
}