7 lines
131 B
Bash
7 lines
131 B
Bash
#!/bin/sh
|
|
|
|
[ -d /run/dbus ] && rm -r /run/dbus
|
|
install -d /run/dbus
|
|
|
|
exec /usr/bin/dbus-daemon --system --nofork --print-address 3
|