Files
Collectarr/folders.sh
2021-08-08 11:58:30 +02:00

15 lines
415 B
Bash

#!/usr/bin/with-contenv bash
if [[ ! -f /config/collectarr.conf ]]; then
echo "First run, cloning config into /config"
mv /app/collectarr.conf.example /config
fi
if [[ ! -f /config/blacklist_collection.conf ]]; then
mv /app/blacklist_collection.conf /config
fi
if [[ ! -f /config/blacklist_actor.conf ]]; then
mv /app/blacklist_actor.conf /config
fi
chown -R root:root /config
chmod -R 777 /config