Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/docker-radarr-extended/commit/decd530f7086b0303f3e93ca57f7d1682e8be3db
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
9 additions and
12 deletions
@ -37,22 +37,19 @@ if [ ! -f "/config/extended/configs/sma.ini" ]; then
cp /sma.ini "/config/extended/configs/sma.ini"
fi
echo "Setting up scripts..."
if [ -f "/config/extended/scripts/QueueCleaner.bash" ] ; then
echo "Removing old script, QueueCleaner.bash"
rm "/config/extended/scripts/QueueCleaner.bash"
fi
echo "Downloading and setting up QueueCleaner.bash"
curl "https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/QueueCleaner.bash" -o "/config/extended/scripts/QueueCleaner.bash"
chmod 777 "/config/extended/scripts/QueueCleaner.bash"
# set permissions
chmod 777 -R /usr/local/sma
find /config/extended -type d -exec chmod 777 { } \;
find /config/extended -type f -exec chmod 666 { } \;
chmod -R 777 /config/extended/scripts
echo "Setting up scripts..."
if [ -f "/custom-services.d/QueueCleaner.bash" ] ; then
echo "Removing old script, QueueCleaner.bash"
rm "/custom-services.d/QueueCleaner.bash"
fi
if [ ! -d /custom-services.d ] ; then
mkdir -p /custom-services.d
fi
echo "Downloading and setting up QueueCleaner.bash"
curl "https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/QueueCleaner.bash" -o "/custom-services.d/QueueCleaner.bash"
chmod 777 "/custom-services.d/QueueCleaner.bash"
echo "Complete..."
exit