26 lines
482 B
Plaintext
26 lines
482 B
Plaintext
# dbus - D-Bus system message bus
|
|
#
|
|
# The D-Bus system message bus allows system daemons and user applications
|
|
# to communicate.
|
|
|
|
description "D-Bus system message bus"
|
|
|
|
start on filesystem
|
|
stop on deconfiguring-networking
|
|
|
|
expect fork
|
|
respawn
|
|
|
|
pre-start script
|
|
mkdir -p /var/run/dbus
|
|
chown messagebus:messagebus /var/run/dbus
|
|
|
|
exec dbus-uuidgen --ensure
|
|
end script
|
|
|
|
exec dbus-daemon --system --fork
|
|
|
|
post-start exec kill -USR1 1
|
|
|
|
post-stop exec rm -f /var/run/dbus/pid
|