mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-02-05 19:34:52 +01:00
8 lines
167 B
Plaintext
8 lines
167 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
if [ ! -d /config/heimdall ]; then
|
|
echo "Creating /config/heimdall"
|
|
mkdir -p /config/heimdall
|
|
chown -R abc:abc /config/heimdall
|
|
fi
|