2008-03-02 21:14:01 +00:00
|
|
|
#!@PREFIX@/sbin/runscript
|
2009-05-01 15:11:40 +01:00
|
|
|
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
|
2008-01-11 15:31:10 +00:00
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2007-11-23 12:37:11 +00:00
|
|
|
|
2008-03-02 21:14:01 +00:00
|
|
|
command=@PKG_PREFIX@/bin/dbus-daemon
|
2008-04-28 12:48:20 +00:00
|
|
|
pidfile=@VARBASE@/run/dbus/pid
|
2007-11-23 12:37:11 +00:00
|
|
|
command_args="${dbusd_args---system}"
|
|
|
|
name="Message Bus Daemon"
|
|
|
|
|
2008-01-11 12:18:05 +00:00
|
|
|
depend()
|
|
|
|
{
|
2007-11-23 12:37:11 +00:00
|
|
|
need localmount net
|
|
|
|
after bootmisc
|
|
|
|
}
|
|
|
|
|
2008-01-11 12:18:05 +00:00
|
|
|
start_pre()
|
|
|
|
{
|
2008-03-23 12:24:15 +00:00
|
|
|
mkdir -p $(dirname $pidfile)
|
2007-11-23 12:37:11 +00:00
|
|
|
}
|