File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,4 +7,10 @@ if which nvidia-smi && [ "${DISABLE_ZINK}" == "false" ]; then
77 export GALLIUM_DRIVER=zink
88fi
99
10- /usr/bin/openbox-session
10+ # Dbus defaults
11+ export XDG_RUNTIME_DIR=" /tmp/xdg-runtime-${PUID} "
12+ mkdir -p -m700 " ${XDG_RUNTIME_DIR} "
13+ chown -R " ${PUID} :${PGID} " " ${XDG_RUNTIME_DIR} "
14+
15+ # Start DE
16+ exec dbus-launch --exit-with-session /usr/bin/openbox-session > /dev/null 2>&1
File renamed without changes.
Original file line number Diff line number Diff line change 1+ #!/usr/bin/with-contenv bash
2+
3+ # Folder setup
4+ mkdir -p /run/dbus
5+ chown abc:abc /run/dbus
6+
7+ # Run dbus
8+ exec s6-setuidgid abc \
9+ dbus-daemon \
10+ --system \
11+ --nofork \
12+ --nosyslog
Original file line number Diff line number Diff line change 1+ longrun
Original file line number Diff line number Diff line change 11#!/usr/bin/with-contenv bash
22
3- # We need to wait for kclient to be full up as docker init breaks audio
4- sleep 5
5-
63# Make sure this is a priv container
74if [ -e /dev/cpu_dma_latency ]; then
85 if [ "${START_DOCKER}" == "true" ]; then
6+ mount -t tmpfs none /tmp
97 exec /usr/local/bin/dockerd-entrypoint.sh -l error
108 else
119 sleep infinity
You can’t perform that action at this time.
0 commit comments