mirror of
https://github.com/Viren070/MediaFusion.git
synced 2025-12-01 23:21:11 +01:00
31 lines
1.3 KiB
Bash
Executable File
31 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Ensure the script exits on failure
|
|
set -e
|
|
|
|
# Wait for the config file to be downloaded and configured
|
|
until curl -o /config/config.xml https://raw.githubusercontent.com/mhdzumair/MediaFusion/main/resources/xml/prowlarr-config.xml; do
|
|
echo "Failed to download config file. Retrying..."
|
|
sleep 3
|
|
done
|
|
|
|
# Replace placeholder with actual API key
|
|
sed -i 's/\$PROWLARR_API_KEY/'"$PROWLARR_API_KEY"'/g' /config/config.xml
|
|
sed -i 's/\$PROWLARR__POSTGRES_USER/'"$PROWLARR__POSTGRES_USER"'/g' /config/config.xml
|
|
sed -i 's/\$PROWLARR__POSTGRES_PASSWORD/'"$PROWLARR__POSTGRES_PASSWORD"'/g' /config/config.xml
|
|
sed -i 's/\$PROWLARR__POSTGRES_PORT/'"$PROWLARR__POSTGRES_PORT"'/g' /config/config.xml
|
|
sed -i 's/\$PROWLARR__POSTGRES_HOST/'"$PROWLARR__POSTGRES_HOST"'/g' /config/config.xml
|
|
sed -i 's/\$PROWLARR__POSTGRES_MAIN_DB/'"$PROWLARR__POSTGRES_MAIN_DB"'/g' /config/config.xml
|
|
sed -i 's/\$PROWLARR__POSTGRES_LOG_DB/'"$PROWLARR__POSTGRES_LOG_DB"'/g' /config/config.xml
|
|
chmod 664 /config/config.xml
|
|
echo "Prowlarr config setup complete."
|
|
|
|
# Check FlareSolverr health
|
|
echo "Waiting for FlareSolverr to be ready..."
|
|
until curl -s -o /dev/null -w "%{http_code}" "$FLARESOLVERR_HOST/health" | grep -q '^2'; do
|
|
echo "FlareSolverr is not ready. Retrying..."
|
|
sleep 5
|
|
done
|
|
|
|
echo "Everything is ready. Exiting init container."
|