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