20 lines
330 B
Plaintext
20 lines
330 B
Plaintext
#!/sbin/runscript
|
|
# Copyright 2007-2008 Roy Marples
|
|
# All rights reserved
|
|
|
|
command=@PREFIX@%%/bin/dbus-daemon
|
|
pidfile=@VARBASE@/run/dbus/dbus.pid
|
|
command_args="${dbusd_args---system}"
|
|
name="Message Bus Daemon"
|
|
|
|
depend() {
|
|
need localmount net
|
|
after bootmisc
|
|
}
|
|
|
|
start_pre() {
|
|
mkdir -p $(dirname $pidfile)
|
|
}
|
|
|
|
# vim: set ts=4 :
|