Files
hassio-addons/emby/root/etc/cont-init.d/50-mounts
2020-11-29 18:58:00 +01:00

10 lines
193 B
Plaintext

#!/usr/bin/with-contenv bashio
if [ ! -d /share/storage ]; then
echo "Creating /share/storage"
mkdir -p /share/storage
chown -R abc:abc /share/storage
fi
mount /dev/sdb1 /share/storage