Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1.08 KB

jackett.md

File metadata and controls

32 lines (20 loc) · 1.08 KB

Truenas: Update Jackett manually

Adapted from digimoot

Assuming the Jackett plugin was installed via the plugins.

Enter the shell for the jail
Execute the following commands

you can download the bash script here and run it with sh ./jacket-update.sh

  • get the latest release for Jackett
fetch https://github.com/Jackett/Jackett/releases/download/v0.18.1022/Jackett.Binaries.Mono.tar.gz -o /usr/local/share

cd /usr/local/share

tar -xzvf /usr/local/share/Jackett.Binaries.Mono.tar.gz -C /usr/local/share

rm /usr/local/share/Jackett.Binaries.Mono.tar.gz

mv /usr/local/share/jackett /usr/local/share/jackett-old
mv /usr/local/share/Jackett /usr/local/share/jackett

chown -R jackett:jackett /usr/local/share/jackett/
chown -R jackett:jackett /usr/local/jackett/

service jackett stop
service jackett start

If you have certificate errors, the fix is here