wok rev 2286

Ajaxterm, bind: improve start script
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 21 21:27:14 2009 +0000 (2009-02-21)
parents 13a75a74f772
children 22ab8eb50d81
files ajaxterm/stuff/etc/init.d/ajaxterm bind/stuff/etc/init.d/named
line diff
     1.1 --- a/ajaxterm/stuff/etc/init.d/ajaxterm	Fri Feb 20 21:18:56 2009 +0000
     1.2 +++ b/ajaxterm/stuff/etc/init.d/ajaxterm	Sat Feb 21 21:27:14 2009 +0000
     1.3 @@ -18,7 +18,7 @@
     1.4  
     1.5  case "$1" in
     1.6    start)
     1.7 -    if [ -f $PIDFILE ] ; then
     1.8 +    if active_pidfile $PIDFILE python ; then
     1.9        echo "$NAME already running."
    1.10        exit 1
    1.11      fi
    1.12 @@ -28,7 +28,7 @@
    1.13      sleep 2
    1.14      ;;
    1.15    stop)
    1.16 -    if [ ! -f $PIDFILE ] ; then
    1.17 +    if ! active_pidfile $PIDFILE python ; then
    1.18        echo "$NAME is not running."
    1.19        exit 1
    1.20      fi
    1.21 @@ -39,7 +39,7 @@
    1.22      sleep 2
    1.23      ;;
    1.24    restart)
    1.25 -    if [ ! -f $PIDFILE ] ; then
    1.26 +    if ! active_pidfile $PIDFILE python ; then
    1.27        echo "$NAME is not running."
    1.28        exit 1
    1.29      fi
     2.1 --- a/bind/stuff/etc/init.d/named	Fri Feb 20 21:18:56 2009 +0000
     2.2 +++ b/bind/stuff/etc/init.d/named	Sat Feb 21 21:27:14 2009 +0000
     2.3 @@ -18,7 +18,7 @@
     2.4  
     2.5  case "$1" in
     2.6    start)
     2.7 -    if [ -f $PIDFILE ] ; then
     2.8 +    if active_pidfile $PIDFILE named ; then
     2.9        echo "$NAME already running."
    2.10        exit 1
    2.11      fi
    2.12 @@ -27,7 +27,7 @@
    2.13      status
    2.14      ;;
    2.15    stop)
    2.16 -    if [ ! -f $PIDFILE ] ; then
    2.17 +    if ! active_pidfile $PIDFILE named ; then
    2.18        echo "$NAME is not running."
    2.19        exit 1
    2.20      fi
    2.21 @@ -40,7 +40,7 @@
    2.22      status
    2.23      ;;
    2.24    restart)
    2.25 -    if [ ! -f $PIDFILE ] ; then
    2.26 +    if ! active_pidfile $PIDFILE named ; then
    2.27        echo "$NAME is not running."
    2.28        exit 1
    2.29      fi