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