[package] update bind to 9.6.0-P1 (#4791)
[openwrt/svn-archive/archive.git] / net / bind / files / named.init
old mode 100755 (executable)
new mode 100644 (file)
index 99b8e0b..a82fed9
@@ -2,14 +2,14 @@
 START=50
 
 config_file=/etc/bind/named.conf
-pid_file=/var/run/named.pid
+pid_file=/var/run/named/named.pid
 
 start() {
   echo Starting isc-bind
 
   /usr/sbin/named -c $config_file
 
-  if [ $$ -eq 0 ]
+  if [ $? -ne 0 ]
   then
     echo "  isc-bind failed to start"
   fi
@@ -21,7 +21,7 @@ stop() {
   then
     kill `cat $pid_file`
 
-    if [ $$ -eq 0 ]
+    if [ $? -eq 0 ]
     then
       echo "  PID " `cat $pid_file` not found
       echo "  Is the named server running?"