openbsd-ports/x11/dbus/pkg/MESSAGE
ajacoutot 9466375421 - s/etc/$SYSCONFDIR
- simpler rc.local example; remove UNMESSAGE
- remove /var/run @sample from PLIST as this gets removed at reboot
- don't try to install dir outside of $PREFIX

ok jasper@ landry@ bernd@
2008-03-23 10:53:55 +00:00

8 lines
253 B
Plaintext

To start systemwide message dbus daemon whenever the machine boots,
add the following lines to /etc/rc.local:
if [ -x ${PREFIX}/bin/dbus-daemon ]; then
install -d -o _dbus -g _dbus /var/run/dbus
echo -n ' dbus'; ${PREFIX}/bin/dbus-daemon --system
fi