Merge pull request #281 from billsbdb3/main

added || true after pip install/changed alpine link to point to dontn…
This commit is contained in:
RandomNinjaAtk 2024-07-04 17:18:19 -04:00 committed by GitHub
commit 1e3608cf83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 50 additions and 36 deletions

View file

@ -15,6 +15,7 @@ apk add -U --update --no-cache \
gcc \ gcc \
ffmpeg && \ ffmpeg && \
echo "************ install python packages ************" && \ echo "************ install python packages ************" && \
pip install --upgrade pip==24.1 && \
pip install --upgrade --no-cache-dir -U --break-system-packages \ pip install --upgrade --no-cache-dir -U --break-system-packages \
excludarr \ excludarr \
yt-dlp \ yt-dlp \
@ -48,14 +49,20 @@ touch ${SMA_PATH}/config/sma.log && \
chgrp users ${SMA_PATH}/config/sma.log && \ chgrp users ${SMA_PATH}/config/sma.log && \
chmod g+w ${SMA_PATH}/config/sma.log && \ chmod g+w ${SMA_PATH}/config/sma.log && \
echo "************ install pip dependencies ************" && \ echo "************ install pip dependencies ************" && \
python3 -m pip install --break-system-packages --upgrade pip && \ python3 -m pip install --break-system-packages --upgrade pip==24.1 && \
pip3 install --break-system-packages -r ${SMA_PATH}/setup/requirements.txt && \ pip3 install --break-system-packages -r ${SMA_PATH}/setup/requirements.txt || true
echo "************ install qtfaststart ************" && \
git clone https://github.com/danielgtaylor/qtfaststart.git /tmp/qtfaststart && \
cd /tmp/qtfaststart && \
python3 setup.py install
echo "************ install recyclarr ************" && \ echo "************ install recyclarr ************" && \
mkdir -p /recyclarr && \ mkdir -p /recyclarr && \
wget "https://github.com/recyclarr/recyclarr/releases/latest/download/recyclarr-linux-musl-x64.tar.xz" -O "/recyclarr/recyclarr.tar.xz" && \ wget "https://github.com/recyclarr/recyclarr/releases/latest/download/recyclarr-linux-musl-x64.tar.xz" -O "/recyclarr/recyclarr.tar.xz" && \
tar -xf /recyclarr/recyclarr.tar.xz -C /recyclarr &>/dev/null && \ tar -xf /recyclarr/recyclarr.tar.xz -C /recyclarr &>/dev/null && \
chmod 777 /recyclarr/recyclarr chmod 777 /recyclarr/recyclarr && \
apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community dotnet7-runtime apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community dotnet8-runtime
mkdir -p /custom-services.d mkdir -p /custom-services.d
echo "Download QueueCleaner service..." echo "Download QueueCleaner service..."
@ -83,7 +90,6 @@ echo "Download Script Functions..."
curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/universal/functions.bash -o /config/extended/functions curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/universal/functions.bash -o /config/extended/functions
echo "Done" echo "Done"
if [ ! -f /config/extended/naming.json ]; then if [ ! -f /config/extended/naming.json ]; then
echo "Download Naming script..." echo "Download Naming script..."
curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/radarr/naming.json -o /config/extended/naming.json curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/radarr/naming.json -o /config/extended/naming.json
@ -106,7 +112,7 @@ if [ ! -f /config/extended/sma.ini ]; then
fi fi
echo "Download Recyclarr service..." echo "Download Recyclarr service..."
curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/universal/services/Recyclarr -o /custom-services.d/Recyclarr curl https://raw.githubusercontent.com/billsbdb3/arr-scripts/main/universal/services/Recyclarr -o /custom-services.d/Recyclarr
echo "Done" echo "Done"
if [ ! -f /config/extended/recyclarr.yaml ]; then if [ ! -f /config/extended/recyclarr.yaml ]; then
@ -122,7 +128,6 @@ if [ ! -f /config/extended.conf ]; then
echo "Done" echo "Done"
fi fi
chmod 777 -R /config/extended chmod 777 -R /config/extended
if [ -f /custom-services.d/scripts_init.bash ]; then if [ -f /custom-services.d/scripts_init.bash ]; then
# user misconfiguration detected, sleeping... # user misconfiguration detected, sleeping...

View file

@ -8,9 +8,13 @@ source /config/extended.conf
source /config/extended/functions source /config/extended/functions
#### Create Log File #### Create Log File
logfileSetup logfileSetup
#### Check Arr App
getArrAppInfo logfile="/config/logs/$logFileName"
verifyApiAccess
log() {
m_time=$(date "+%F %T")
echo "$m_time :: $scriptName :: $scriptVersion :: $1" | tee -a "$logfile"
}
verifyConfig () { verifyConfig () {
if [ "$enableRecyclarr" != "true" ]; then if [ "$enableRecyclarr" != "true" ]; then
@ -29,21 +33,26 @@ RecyclarrProcess () {
sed -i "s%arrUrl%$arrUrl%g" "/config/extended/recyclarr.yaml" sed -i "s%arrUrl%$arrUrl%g" "/config/extended/recyclarr.yaml"
sed -i "s%arrApi%$arrApiKey%g" "/config/extended/recyclarr.yaml" sed -i "s%arrApi%$arrApiKey%g" "/config/extended/recyclarr.yaml"
# update arr app
log "Updating Arr via Recyclarr" log "Updating Arr via Recyclarr"
if [ ! -d /config/extended/recyclarr-data ]; then if [ ! -d /config/extended/recyclarr-data ]; then
mkdir -p /config/extended/recyclarr-data mkdir -p /config/extended/recyclarr-data
chmod 777 /config/extended/recyclarr-data chmod 777 /config/extended/recyclarr-data
fi fi
/recyclarr/recyclarr sync -c $recyclarrConfig --app-data /config/extended/recyclarr-data
# Capture the output of the Recyclarr command
recyclarr_output=$(/recyclarr/recyclarr sync -c $recyclarrConfig --app-data /config/extended/recyclarr-data 2>&1)
# Log the output line by line
while IFS= read -r line; do
log "$line"
done <<< "$recyclarr_output"
log "Complete" log "Complete"
} }
# Loop Script # Main Loop
for (( ; ; )); do for (( ; ; )); do
let i++
logfileSetup logfileSetup
verifyConfig verifyConfig
getArrAppInfo getArrAppInfo