mirror of
https://github.com/RiffSphere/Collectarr.git
synced 2026-05-03 02:19:23 -05:00
9 lines
219 B
Bash
9 lines
219 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
|
|
|
|
chown -R root:root /config
|
|
chmod -R 777 /config
|