* revert to bullseye. * add bookworm. * add bookworm to variants. * include xf86-video-dummy because the remote git instance is offline. * fix configure.
11 lines
222 B
Bash
Executable file
11 lines
222 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -d /var/run/dbus ]; then
|
|
mkdir -p /var/run/dbus
|
|
fi
|
|
|
|
if [ -f /var/run/dbus/pid ]; then
|
|
rm -f /var/run/dbus/pid
|
|
fi
|
|
|
|
/usr/bin/dbus-daemon --nofork --print-pid --config-file=/usr/share/dbus-1/system.conf
|