]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blob - pkgs/core/dbus/messagebus.conf
New package: dbus.
[people/arne_f/ipfire-3.x.git] / pkgs / core / dbus / messagebus.conf
1 description "Starts the message bus daemon"
2 author "IPFire Team"
3
4 start on stopped mountfs
5 stop on starting shutdown
6
7 exec /usr/bin/dbus-daemon --config-file=/etc/dbus-1/system.conf --nofork
8 respawn
9
10 pre-start script
11 dbus-uuidgen --ensure >/dev/null
12 if [ ! -d /var/run/dbus ]; then
13 mkdir /var/run/dbus
14 fi
15 end script