X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=net%2Fnodogsplash%2Ffiles%2Fnodogsplash.init;h=7eba60b1661ba1c8281f049f6e0c0637a4fd3956;hp=56762804e0bbbe566c04af826d9efeb9b45f3401;hb=d83454ae05da8faea20a6169374480e11d03a752;hpb=93ecd5923b3a0b9be9e2f7b12921b773d7c5141d diff --git a/net/nodogsplash/files/nodogsplash.init b/net/nodogsplash/files/nodogsplash.init index 56762804e0..7eba60b166 100644 --- a/net/nodogsplash/files/nodogsplash.init +++ b/net/nodogsplash/files/nodogsplash.init @@ -26,7 +26,7 @@ start() { if $WD_DIR/ndsctl status 2> /dev/null; then echo "FAILED: nodogsplash already running" else - if $0 test_module && $WD_DIR/nodogsplash $OPTIONS; then + if test_module && $WD_DIR/nodogsplash $OPTIONS; then echo "OK: nodogsplash started" else echo "FAILED: nodogsplash exited with non 0 status" @@ -45,6 +45,8 @@ stop() { else echo "FAILED: nodogsplash was not running" fi +} + status() { $WD_DIR/ndsctl status }