From f80ecf5804b528c424ab4cec5c9db5dc40abfa12 Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Sun, 19 May 2024 20:29:12 +1200 Subject: [PATCH] readme; simplify linux install command resolves #15331 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1ea267f0..d28c3c227 100644 --- a/README.md +++ b/README.md @@ -746,7 +746,7 @@ On most operating systems all the required dependencies will already be present. ### Install as service A) Command to download and install the latest package and run the Jackett service: -`cd /opt && f=Jackett.Binaries.LinuxAMDx64.tar.gz && release=$(wget -q https://github.com/Jackett/Jackett/releases/latest -O - | grep "title>Release" | cut -d " " -f 4) && sudo wget -Nc https://github.com/Jackett/Jackett/releases/download/$release/"$f" && sudo tar -xzf "$f" && sudo rm -f "$f" && cd Jackett* && sudo ./install_service_systemd.sh && systemctl status jackett.service && cd - && echo -e "\nVisit http://127.0.0.1:9117"` +`cd /opt && f=Jackett.Binaries.LinuxAMDx64.tar.gz && sudo wget -Nc https://github.com/Jackett/Jackett/releases/latest/download/"$f" && sudo tar -xzf "$f" && sudo rm -f "$f" && cd Jackett* && sudo ./install_service_systemd.sh && systemctl status jackett.service && cd - && echo -e "\nVisit http://127.0.0.1:9117"` B) Or manually: