diff options
author | Ross Burton <ross@openedhand.com> | 2007-09-24 15:14:12 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-09-24 15:14:12 +0000 |
commit | 4f06fd1e153b7fc51f0c1759ba43fd66000f9d14 (patch) | |
tree | 716e6e98578c97d540f15adbe55200c15168e65f /meta/packages/dbus/dbus-1.0.2/dbus-1.init | |
parent | c0be929c8072b39ca081386c131a5f3896246093 (diff) | |
download | poky-4f06fd1e153b7fc51f0c1759ba43fd66000f9d14.tar.gz |
dbus: don't pass --reverse to run-parts, busybox doesn't support it
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2776 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/dbus/dbus-1.0.2/dbus-1.init')
-rw-r--r-- | meta/packages/dbus/dbus-1.0.2/dbus-1.init | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/packages/dbus/dbus-1.0.2/dbus-1.init b/meta/packages/dbus/dbus-1.0.2/dbus-1.init index 38e7574ad5..88fe7e33db 100644 --- a/meta/packages/dbus/dbus-1.0.2/dbus-1.init +++ b/meta/packages/dbus/dbus-1.0.2/dbus-1.init | |||
@@ -62,7 +62,8 @@ start_it_up() | |||
62 | shut_it_down() | 62 | shut_it_down() |
63 | { | 63 | { |
64 | if [ -d $EVENTDIR ]; then | 64 | if [ -d $EVENTDIR ]; then |
65 | run-parts --reverse --arg=stop $EVENTDIR | 65 | # TODO: --reverse when busybox supports it |
66 | run-parts --arg=stop $EVENTDIR | ||
66 | fi | 67 | fi |
67 | echo -n "Stopping $DESC: " | 68 | echo -n "Stopping $DESC: " |
68 | start-stop-daemon --stop --quiet --pidfile $PIDFILE \ | 69 | start-stop-daemon --stop --quiet --pidfile $PIDFILE \ |