/etc/init/dbus.conf is in dbus 1.4.18-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # 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 local-filesystems
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 --activation=upstart
post-start exec kill -USR1 1
post-stop exec rm -f /var/run/dbus/pid
|