8f2c12b8cf
--HG-- extra : convert_revision : b588a73ab5a4efd09f75a3055e21444ce483aef1
22 lines
300 B
Text
22 lines
300 B
Text
#!/sbin/runscript
|
|
|
|
command=/usr/bin/dbus-daemon
|
|
pidfile=/var/run/dbus/pid
|
|
: ${command_args:=--system}
|
|
|
|
depend()
|
|
{
|
|
need localmount net
|
|
after bootmisc
|
|
}
|
|
|
|
start_pre()
|
|
{
|
|
dir=$(dirname $pidfile)
|
|
if [ ! -d $dir ]; then
|
|
mkdir $dir
|
|
chmod 0755 $dir
|
|
chown dbus:dbus $dir
|
|
fi
|
|
dbus-uuidgen --ensure
|
|
}
|