packages/net/bind/files/named.init
florian 4f35aa5dd0 [package] update bind to 9.6.0-P1 (#4791)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@17024 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-07-26 20:20:54 +00:00

36 lines
530 B
Bash

#!/bin/sh /etc/rc.common
START=50
config_file=/etc/bind/named.conf
pid_file=/var/run/named/named.pid
start() {
echo Starting isc-bind
/usr/sbin/named -c $config_file
if [ $? -ne 0 ]
then
echo " isc-bind failed to start"
fi
}
stop() {
echo "Stopping isc-bind"
if [ -e $pid_file ]
then
kill `cat $pid_file`
if [ $? -eq 0 ]
then
echo " PID " `cat $pid_file` not found
echo " Is the named server running?"
fi
rm $pid_file
else
echo " $pid_file not found"
fi
}