This patch fixes wrong error checking in stop() and adds checking for already running...
[openwrt/svn-archive/archive.git] / net / bind / files / named.init
old mode 100755 (executable)
new mode 100644 (file)
index c4b9a7d..3c4c76a
@@ -1,38 +1,38 @@
 #!/bin/sh /etc/rc.common
+START=50
 
-lease_file=/tmp/dhcpd.leases
-config_file=/etc/dhcpd.conf
-pid_file=/var/run/dhcpd.pid
+config_file=/etc/bind/named.conf
+pid_file=/var/run/named.pid
 
 start() {
-  echo Starting isc-dhcpd
-
-  if [ ! -e $lease_file ]; then
-    echo "  Creating $lease_file"
-    touch $lease_file
+  if [ -e $pid_file ]
+  then
+     echo "  named already running with PID `cat $pid_file`"
+     return 1
   fi
+  echo Starting isc-bind
 
-  /usr/sbin/dhcpd -cf $config_file -lf $lease_file
+  /usr/sbin/named -c $config_file
 
-  if [ $$ -eq 0 ]
+  if [ $? -ne 0 ]
   then
-    echo "  isc-dhcpd failed to start"
+    echo "  isc-bind failed to start"
   fi
 }
 
 stop() {
-  echo "Stopping isc-dhcpd"
+  echo "Stopping isc-bind"
   if [ -e $pid_file ]
   then
     kill `cat $pid_file`
 
-    if [ $$ -eq 0 ]
+    if [ $? -ne 0 ]
     then
       echo "  PID " `cat $pid_file` not found
-      echo "  Is the DHCP server running?"
+      echo "  Is the named server running?"
     fi
 
-    rm $pid_file
+    rm -f $pid_file
 
     else
     echo "  $pid_file not found"