summaryrefslogtreecommitdiff
path: root/packages/dbus/dbus-1.0.2/dbus-1.init
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2007-09-29 07:26:28 +0000
committerKoen Kooi <koen@openembedded.org>2007-09-29 07:26:28 +0000
commitca4c0d9813a41a7908f707a17f73db7d8cf6fbac (patch)
treed7a892d8249e817e5fdfd28f73b35bbb44482adb /packages/dbus/dbus-1.0.2/dbus-1.init
parent56a0b8217e225655eb0031b10214120c783c8df5 (diff)
dbus: sync with poky and use .inc file
Diffstat (limited to 'packages/dbus/dbus-1.0.2/dbus-1.init')
-rw-r--r--packages/dbus/dbus-1.0.2/dbus-1.init18
1 files changed, 16 insertions, 2 deletions
diff --git a/packages/dbus/dbus-1.0.2/dbus-1.init b/packages/dbus/dbus-1.0.2/dbus-1.init
index 46e321860d..0725083c69 100644
--- a/packages/dbus/dbus-1.0.2/dbus-1.init
+++ b/packages/dbus/dbus-1.0.2/dbus-1.init
@@ -62,6 +62,7 @@ start_it_up()
shut_it_down()
{
if [ -d $EVENTDIR ]; then
+ # TODO: --reverse when busybox supports it
run-parts --arg=stop $EVENTDIR
fi
echo -n "Stopping $DESC: "
@@ -75,6 +76,16 @@ shut_it_down()
rm -f $PIDFILE
}
+reload_it()
+{
+ echo -n "Reloading $DESC config: "
+ dbus-send --print-reply --system --type=method_call \
+ --dest=org.freedesktop.DBus \
+ / org.freedesktop.DBus.ReloadConfig > /dev/null
+ # hopefully this is enough time for dbus to reload it's config file.
+ echo "done."
+}
+
case "$1" in
start)
start_it_up
@@ -82,13 +93,16 @@ case "$1" in
stop)
shut_it_down
;;
- restart|force-reload)
+ reload|force-reload)
+ reload_it
+ ;;
+ restart)
shut_it_down
sleep 1
start_it_up
;;
*)
- echo "Usage: /etc/init.d/$NAME {start|stop|restart|force-reload}" >&2
+ echo "Usage: /etc/init.d/$NAME {start|stop|restart|reload|force-reload}" >&2
exit 1
;;
esac