2009-09-26 14:35:50 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# general config
|
2009-09-26 15:21:59 +00:00
|
|
|
. /opt/etc/rc.conf
|
|
|
|
. /opt/etc/rc.d/functions
|
2009-09-26 14:35:50 +00:00
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
stat_busy "Starting D-BUS system messagebus"
|
2009-09-26 15:21:59 +00:00
|
|
|
if [ ! -x /opt/var/run/dbus ] ; then
|
|
|
|
install -m755 -g 81 -o 81 -d /opt/var/run/dbus
|
2009-09-26 14:35:50 +00:00
|
|
|
fi
|
2009-09-26 15:21:59 +00:00
|
|
|
if [ -x /opt/bin/dbus-uuidgen ] ; then
|
|
|
|
/opt/bin/dbus-uuidgen --ensure
|
2009-09-26 14:35:50 +00:00
|
|
|
fi
|
|
|
|
|
2009-09-26 15:21:59 +00:00
|
|
|
/opt/bin/dbus-daemon --system
|
2009-09-26 14:35:50 +00:00
|
|
|
if [ $? -gt 0 ]; then
|
|
|
|
stat_fail
|
|
|
|
else
|
|
|
|
add_daemon dbus
|
|
|
|
stat_done
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
stat_busy "Stopping D-BUS system messagebus"
|
2009-09-26 15:21:59 +00:00
|
|
|
[ -f /opt/var/run/dbus.pid ] && kill `cat /opt/var/run/dbus.pid` >/dev/null 2>&1
|
2009-09-26 14:35:50 +00:00
|
|
|
if [ $? -gt 0 ]; then
|
|
|
|
stat_fail
|
|
|
|
else
|
2009-09-26 15:21:59 +00:00
|
|
|
rm -f /opt/var/run/dbus.pid
|
2009-09-26 14:35:50 +00:00
|
|
|
rm_daemon dbus
|
|
|
|
stat_done
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
restart)
|
|
|
|
$0 stop
|
|
|
|
sleep 1
|
|
|
|
$0 start
|
|
|
|
;;
|
|
|
|
reload)
|
|
|
|
stat_busy "Reloading D-BUS configuration"
|
2009-09-26 15:21:59 +00:00
|
|
|
[ -f /opt/var/run/dbus.pid ] && /opt/bin/dbus-send \
|
2009-09-26 14:35:50 +00:00
|
|
|
--system --type=method_call \
|
|
|
|
--dest=org.freedesktop.DBus \
|
|
|
|
/ org.freedesktop.DBus.ReloadConfig
|
|
|
|
if [ $? -gt 0 ]; then
|
|
|
|
stat_fail
|
|
|
|
else
|
|
|
|
stat_done
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "usage: $0 {start|stop|restart|reload}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
exit 0
|