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
This commit is contained in:
florian 2007-05-07 16:27:44 +00:00
parent aaa766c3bc
commit af038ae0c4

View File

@ -1,27 +1,21 @@
#!/bin/sh /etc/rc.common #!/bin/sh /etc/rc.common
lease_file=/tmp/dhcpd.leases config_file=/etc/bind/named.conf
config_file=/etc/dhcpd.conf pid_file=/var/run/named.pid
pid_file=/var/run/dhcpd.pid
start() { start() {
echo Starting isc-dhcpd echo Starting isc-bind
if [ ! -e $lease_file ]; then /usr/sbin/named -c $config_file
echo " Creating $lease_file"
touch $lease_file
fi
/usr/sbin/dhcpd -cf $config_file -lf $lease_file
if [ $$ -eq 0 ] if [ $$ -eq 0 ]
then then
echo " isc-dhcpd failed to start" echo " isc-bind failed to start"
fi fi
} }
stop() { stop() {
echo "Stopping isc-dhcpd" echo "Stopping isc-bind"
if [ -e $pid_file ] if [ -e $pid_file ]
then then
kill `cat $pid_file` kill `cat $pid_file`
@ -29,7 +23,7 @@ stop() {
if [ $$ -eq 0 ] if [ $$ -eq 0 ]
then then
echo " PID " `cat $pid_file` not found echo " PID " `cat $pid_file` not found
echo " Is the DHCP server running?" echo " Is the named server running?"
fi fi
rm $pid_file rm $pid_file