mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-04-10 00:20:00 +02: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
|