]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
dbus: remove init script status op
authorBaruch Siach <baruch@tkos.co.il>
Wed, 1 Feb 2017 20:48:42 +0000 (22:48 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 1 Feb 2017 21:12:50 +0000 (22:12 +0100)
The status command calls the Upstart status utility which we don't have.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/dbus/S30dbus

index 4427b5c72c0ae62779662938c1e102c5d76cd70d..b4bcf9c7aa9a8f52904e21c71bfb41616f7aa3f6 100644 (file)
@@ -53,10 +53,6 @@ case "$1" in
     stop)
         stop
         ;;
-    status)
-        status $processname
-        RETVAL=$?
-        ;;
     restart)
         stop
         start
@@ -72,7 +68,7 @@ case "$1" in
         RETVAL=$?
         ;;
     *)
-        echo "Usage: $0 {start|stop|status|restart|condrestart|reload}"
+        echo "Usage: $0 {start|stop|restart|condrestart|reload}"
         ;;
 esac
 exit $RETVAL