You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.5 KiB
103 lines
3.5 KiB
#!/usr/bin/with-contenv bash
|
|
|
|
# set permissions
|
|
chmod 0777 -R /usr/local/sabnzbd-scripts
|
|
|
|
|
|
# remove existing audio-pp script file
|
|
if [ -f "/config/scripts/audio-pp.bash" ]; then
|
|
rm "/config/scripts/audio-pp.bash"
|
|
sleep 0.1
|
|
fi
|
|
|
|
# cp audio-pp script file for use
|
|
if [ ! -f "/config/scripts/audio-pp.bash" ]; then
|
|
cp "/usr/local/sabnzbd-scripts/audio-pp.bash" "/config/scripts/audio-pp.bash" && \
|
|
chmod 0777 "/config/scripts/audio-pp.bash"
|
|
fi
|
|
|
|
# cp beets config file for use
|
|
if [ ! -f "/config/scripts/configs/beets-config.yaml" ]; then
|
|
cp "/usr/local/sabnzbd-scripts/beets-config.yaml" "/config/scripts/configs/beets-config.yaml" && \
|
|
chmod 0666 "/config/scripts/configs/beets-config.yaml"
|
|
fi
|
|
|
|
|
|
# remove existing video-pp script file
|
|
if [ -f "/config/scripts/video-pp.bash" ]; then
|
|
rm "/config/scripts/video-pp.bash"
|
|
sleep 0.1
|
|
fi
|
|
|
|
# cp video-pp script file for use
|
|
if [ ! -f "/config/scripts/video-pp.bash" ]; then
|
|
cp "/usr/local/sabnzbd-scripts/sabnzbd/video-pp.bash" "/config/scripts/video-pp.bash" && \
|
|
chmod 0777 "/config/scripts/video-pp.bash"
|
|
fi
|
|
|
|
if [ ! -f "/config/sabnzbd.ini" ]; then
|
|
# start cron
|
|
service cron start
|
|
exit 0
|
|
fi
|
|
|
|
# Check if config is already updated, if not start cron...
|
|
if cat "/config/sabnzbd.ini" | grep "/config/scripts" | read; then
|
|
echo "config already updated..."
|
|
exit 0
|
|
else
|
|
# start cron
|
|
service cron start
|
|
fi
|
|
|
|
# Check for finished initial config file, if sab is done, proceed with automated modifications...
|
|
if cat "/config/sabnzbd.ini" | grep "\[categories\]" | read; then
|
|
# Add scripts path
|
|
if cat "/config/sabnzbd.ini" | grep "script_dir = \"\"" | read; then
|
|
sed -i "s/script_dir = \"\"/script_dir = \"\/config\/scripts\"/g" "/config/sabnzbd.ini"
|
|
fi
|
|
|
|
# Correct incomplete path
|
|
if cat "/config/sabnzbd.ini" | grep "Downloads/incomplete" | read; then
|
|
sed -i "s/Downloads\/incomplete/\/storage\/downloads\/sabnzbd\/incomplete/g" "/config/sabnzbd.ini"
|
|
fi
|
|
|
|
# Correct complete path
|
|
if cat "/config/sabnzbd.ini" | grep "Downloads/complete" | read; then
|
|
sed -i "s/Downloads\/complete/\/storage\/downloads\/sabnzbd\/complete/g" "/config/sabnzbd.ini"
|
|
fi
|
|
|
|
# Enable script failure
|
|
if cat "/config/sabnzbd.ini" | grep "script_can_fail = 0" | read; then
|
|
sed -i "s/script_can_fail = 0/script_can_fail = 1/g" "/config/sabnzbd.ini"
|
|
fi
|
|
|
|
# Enable pause on post processing
|
|
if cat "/config/sabnzbd.ini" | grep "pause_on_post_processing = 0" | read; then
|
|
sed -i "s/pause_on_post_processing = 0/pause_on_post_processing = 1/g" "/config/sabnzbd.ini"
|
|
fi
|
|
|
|
# Set permissions
|
|
if cat "/config/sabnzbd.ini" | grep "permissions = \"\"" | read; then
|
|
sed -i "s/permissions = \"\"/permissions = \"766\"/g" "/config/sabnzbd.ini"
|
|
fi
|
|
|
|
# purge default categories
|
|
sed -i '/\[\[software\]\]/,+7d' "/config/sabnzbd.ini" && \
|
|
sed -i '/\[\[audio\]\]/,+7d' "/config/sabnzbd.ini" && \
|
|
sed -i '/\[\[tv\]\]/,+7d' "/config/sabnzbd.ini" && \
|
|
sed -i '/\[\[movies\]\]/,+7d' "/config/sabnzbd.ini" && \
|
|
|
|
# Add categories
|
|
sed -i '/\[categories\]/a\\[\[radarr\]\]\npriority = -100\npp = ""\nname = radarr\nscript = video-pp.bash\nnewzbin = ""\norder = 1\n\dir = radarr\n\[\[sonarr\]\]\npriority = -100\npp = ""\nname = sonarr\nscript = video-pp.bash\nnewzbin = ""\norder = 2\n\dir = sonarr\n\[\[lidarr\]\]\npriority = -100\npp = ""\nname = lidarr\nscript = audio-pp.bash\nnewzbin = ""\norder = 3\n\dir = lidarr' "/config/sabnzbd.ini"
|
|
|
|
sleep 2
|
|
restartsab=$(pgrep s6-supervise | sort -r | head -n1) && \
|
|
kill ${restartsab} && \
|
|
echo "config updated" && \
|
|
# stop cron
|
|
service cron stop
|
|
fi
|
|
|
|
exit 0
|