wok-next rev 2397
busybox/inetd: improve start script
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Mar 10 09:17:01 2009 +0000 (2009-03-10) |
parents | f34a5fddcf70 |
children | 836def6d28d8 |
files | busybox/stuff/inetd busybox/stuff/init |
line diff
1.1 --- a/busybox/stuff/inetd Tue Mar 10 09:14:59 2009 +0000 1.2 +++ b/busybox/stuff/inetd Tue Mar 10 09:17:01 2009 +0000 1.3 @@ -16,7 +16,7 @@ 1.4 1.5 case "$1" in 1.6 start) 1.7 - if [ -f $PIDFILE ] ; then 1.8 + if active_pidfile $PIDFILE inetd ; then 1.9 echo "$NAME already running." 1.10 exit 1 1.11 fi 1.12 @@ -25,7 +25,7 @@ 1.13 status 1.14 ;; 1.15 stop) 1.16 - if [ ! -f $PIDFILE ] ; then 1.17 + if ! active_pidfile $PIDFILE inetd ; then 1.18 echo "$NAME is not running." 1.19 exit 1 1.20 fi 1.21 @@ -34,7 +34,7 @@ 1.22 status 1.23 ;; 1.24 restart) 1.25 - if [ ! -f $PIDFILE ] ; then 1.26 + if ! active_pidfile $PIDFILE inetd ; then 1.27 echo "$NAME is not running." 1.28 exit 1 1.29 fi
2.1 --- a/busybox/stuff/init Tue Mar 10 09:14:59 2009 +0000 2.2 +++ b/busybox/stuff/init Tue Mar 10 09:17:01 2009 +0000 2.3 @@ -1,6 +1,6 @@ 2.4 #!/bin/sh 2.5 2.6 -echo -n "switching / to tmpfs..." 2.7 +echo -n "Switching / to tmpfs..." 2.8 mount -t proc proc /proc 2.9 size="$(grep rootfssize= < /proc/cmdline | \ 2.10 sed 's/.*rootfssize=\([0-9]*[kmg%]\).*/-o size=\1/')"