packages/ipv6/ahcpd/files/ahcpd.init
florian d3948a6d59 Fix broken init scripts for ahcpd (#3550)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@11505 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-06-16 13:21:16 +00:00

32 lines
722 B
Bash

#!/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/sbin/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)."
}