From d02cea301d3e1b343279a37acd31b7f72c7218b1 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Sat, 18 Mar 2023 12:47:30 -0400 Subject: [PATCH] Download and use universal QueueCleaner --- root/etc/cont-init.d/98-script-setup.bash | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/root/etc/cont-init.d/98-script-setup.bash b/root/etc/cont-init.d/98-script-setup.bash index 54de1c7..dd7c4ac 100644 --- a/root/etc/cont-init.d/98-script-setup.bash +++ b/root/etc/cont-init.d/98-script-setup.bash @@ -43,5 +43,10 @@ find /config/extended -type d -exec chmod 777 {} \; find /config/extended -type f -exec chmod 666 {} \; chmod -R 777 /config/extended/scripts + +echo "Setting up scripts..." +echo "Downloading and setting up QueueCleaner.bash" +curl "https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/QueueCleaner.bash" -o "/etc/services.d/QueueCleaner.bash" +chmod 777 "/etc/services.d/QueueCleaner.bash" echo "Complete..." exit