You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-plex/root/etc/cont-init.d/30-dbus

16 lines
251 B

9 years ago
#!/usr/bin/with-contenv bash
8 years ago
# make folders
mkdir -p \
/var/run/dbus
8 years ago
# delete existing pid if found
[[ -e /var/run/dbus/pid ]] && \
rm -f /var/run/dbus/pid
# permissions
chown messagebus:messagebus \
/var/run/dbus
dbus-uuidgen --ensure
sleep 1