dbus: start init scripts on RUNLEVEL=boot

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2011-09-07 23:13:52 +02:00
parent 5a491d0429
commit a709af45da

View File

@ -23,6 +23,8 @@
# #
# runlevels: openelec, textmode # runlevels: openelec, textmode
case $RUNLEVEL in
boot)
( (
progress "Starting D-BUS" progress "Starting D-BUS"
@ -30,3 +32,8 @@
dbus-uuidgen --ensure dbus-uuidgen --ensure
dbus-daemon --system dbus-daemon --system
)& )&
;;
poweroff|reboot)
;;
esac