mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-28 15:37:39 +01:00
13 lines
292 B
Plaintext
13 lines
292 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
if [ ! -d /config/jackett ]; then
|
|
echo "Creating /config/jackett"
|
|
mkdir -p /config/jackett
|
|
chown -R abc:abc /config/jackett
|
|
fi
|
|
|
|
if [ ! -d /share/jackett ]; then
|
|
echo "Creating /share/jackett"
|
|
mkdir -p /share/jackett
|
|
chown -R abc:abc /share/jackett
|
|
fi |