9 lines
149 B
Bash
Executable File
9 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -e /run/dbus/pid ]; then
|
|
rm -f /run/dbus/pid
|
|
fi
|
|
|
|
exec 2>&1
|
|
exec /usr/bin/chpst -u messagebus /usr/bin/dbus-daemon --system --nofork
|