mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-02 05:44:03 +02:00
add sonarr, bazarr, jackett
This commit is contained in:
19
jackett/root/etc/cont-init.d/20-folders
Normal file
19
jackett/root/etc/cont-init.d/20-folders
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
|
||||
if [ ! -d /share/storage/movies ]; then
|
||||
echo "Creating /share/storage/movies"
|
||||
mkdir -p /share/storage/movies
|
||||
chown -R abc:abc /share/storage/movies
|
||||
fi
|
||||
|
||||
if [ ! -d /share/downloads ]; then
|
||||
echo "Creating /share/downloads"
|
||||
mkdir -p /share/downloads
|
||||
chown -R abc:abc /share/downloads
|
||||
fi
|
||||
|
||||
if [ ! -d /config/jackett ]; then
|
||||
echo "Creating /config/jackett"
|
||||
mkdir -p /config/jackett
|
||||
chown -R abc:abc /config/jackett
|
||||
fi
|
||||
Reference in New Issue
Block a user