From cd9e045aa51f633c0e82e7afb9c055660547fd43 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Tue, 8 Sep 2020 06:40:30 -0400 Subject: [PATCH] Delete 33-script-setup.bash --- root/etc/cont-init.d/33-script-setup.bash | 102 ---------------------- 1 file changed, 102 deletions(-) delete mode 100644 root/etc/cont-init.d/33-script-setup.bash diff --git a/root/etc/cont-init.d/33-script-setup.bash b/root/etc/cont-init.d/33-script-setup.bash deleted file mode 100644 index d1a33e5..0000000 --- a/root/etc/cont-init.d/33-script-setup.bash +++ /dev/null @@ -1,102 +0,0 @@ -#!/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