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,10 +23,17 @@
#
# runlevels: openelec, textmode
(
progress "Starting D-BUS"
case $RUNLEVEL in
boot)
(
progress "Starting D-BUS"
mkdir -p /var/lib/dbus /var/run/dbus
dbus-uuidgen --ensure
dbus-daemon --system
)&
mkdir -p /var/lib/dbus /var/run/dbus
dbus-uuidgen --ensure
dbus-daemon --system
)&
;;
poweroff|reboot)
;;
esac