diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-10-08 19:12:51 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-10-08 19:12:51 +0000 |
commit | 05d99dde448ec9fa69a307bf564a497897b578bd (patch) | |
tree | 3e962c317348af652dc3e8d3991bf5cfb019bf24 /package/p910nd/files/p910nd.init | |
parent | eef154f9700c1dd826735902e2e228d99a5e96cc (diff) | |
download | upstream-05d99dde448ec9fa69a307bf564a497897b578bd.tar.gz upstream-05d99dde448ec9fa69a307bf564a497897b578bd.tar.bz2 upstream-05d99dde448ec9fa69a307bf564a497897b578bd.zip |
change initscript to use more than one port / device,
bump release number.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2080 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/p910nd/files/p910nd.init')
-rw-r--r-- | package/p910nd/files/p910nd.init | 37 |
1 files changed, 32 insertions, 5 deletions
diff --git a/package/p910nd/files/p910nd.init b/package/p910nd/files/p910nd.init index 688090d919..1a6c4f4a13 100644 --- a/package/p910nd/files/p910nd.init +++ b/package/p910nd/files/p910nd.init @@ -1,17 +1,44 @@ #!/bin/sh DEFAULT=/etc/default/p910nd -[ -f $DEFAULT ] && . $DEFAULT RUN_D=/var/run -PID_F=$RUN_D/p910${PORT-0}d.pid + +_start() { + mkdir -p $RUN_D + [ -f $DEFAULT ] && ( + while read port options; do + case "$port" in + ""|\#*) + continue; + esac + p910nd $options $port + if [ $? -ne 0 ]; then + exit 1 + fi + done + ) < $DEFAULT + exit 0 +} + +_stop() { + [ -f $DEFAULT ] && ( + while read port options; do + case "$port" in + ""|\#*) + continue; + esac + PID_F=$RUN_D/p910${port}d.pid + [ -f $PID_F ] && kill $(cat $PID_F) + done + ) < $DEFAULT +} case $1 in start) - mkdir -p $RUN_D - p910nd $OPTIONS $PORT + _start ;; stop) - [ -f $PID_F ] && kill $(cat $PID_F) + _stop ;; *) echo "usage: $0 (start|stop)" |