mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-02-01 09:27:44 +01:00
10 lines
193 B
Plaintext
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
|