From eaa48deb3c242baba96d9201aafd69640d930685 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Sun, 16 Jul 2023 14:31:22 -0400 Subject: [PATCH] Create setup.bash #22 --- readarr/setup.bash | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 readarr/setup.bash diff --git a/readarr/setup.bash b/readarr/setup.bash new file mode 100644 index 0000000..89c91a6 --- /dev/null +++ b/readarr/setup.bash @@ -0,0 +1,22 @@ +#!/usr/bin/with-contenv bash +echo "************ install and update packages ************" +apk add -U --update --no-cache \ + jq \ + py3-pip && \ +echo "************ install python packages ************" +pip install --upgrade --no-cache-dir -U yq + +mkdir -p /custom-services.d +echo "Download AutoConfig service..." +curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/readarr/AutoConfig.bash -o /custom-services.d/AutoConfig +echo "Done" + +echo "Download QueueCleaner service..." +curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/universal/services/QueueCleaner -o /custom-services.d/QueueCleaner +echo "Done" + +mkdir -p /config/extended +echo "Download PlexNotify script..." +curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/radarr/PlexNotify.bash -o /config/extended/PlexNotify.bash +echo "Done" +exit