Files
hp-scan/docker-entrypoint.sh
2026-07-24 15:07:31 +05:00

15 lines
178 B
Bash

#!/bin/sh
set -eu
mkdir -p /run/dbus
rm -f /run/dbus/pid
if [[ ! -s /etc/machine-id ]]; then
dbus-uuidgen --ensure=/etc/machine-id
fi
dbus-daemon --system --fork
exec "$@"