packages/net/bind/files/named.init
florian af038ae0c4 Use an init script that will start named, not dhcpd (#1627)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@7125 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-05-07 16:27:44 +00:00

35 lines
515 B
Bash
Executable File

#!/bin/sh /etc/rc.common
config_file=/etc/bind/named.conf
pid_file=/var/run/named.pid
start() {
echo Starting isc-bind
/usr/sbin/named -c $config_file
if [ $$ -eq 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
}