2007-11-23 18:07:11 +05:30
|
|
|
#!/sbin/runscript
|
2008-01-11 21:01:10 +05:30
|
|
|
# Copyright 2007-2008 Roy Marples <roy@marples.name>
|
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2007-11-23 18:07:11 +05:30
|
|
|
|
2008-01-11 16:25:36 +05:30
|
|
|
command=@PREFIX@%%/bin/dbus-daemon
|
|
|
|
pidfile=@VARBASE@/run/dbus/dbus.pid
|
2007-11-23 18:07:11 +05:30
|
|
|
command_args="${dbusd_args---system}"
|
|
|
|
name="Message Bus Daemon"
|
|
|
|
|
2008-01-11 17:48:05 +05:30
|
|
|
depend()
|
|
|
|
{
|
2007-11-23 18:07:11 +05:30
|
|
|
need localmount net
|
|
|
|
after bootmisc
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:48:05 +05:30
|
|
|
start_pre()
|
|
|
|
{
|
2007-11-23 18:07:11 +05:30
|
|
|
mkdir -p $(dirname $pidfile)
|
|
|
|
}
|