Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/3c79305bca9a55d68b8263c72f12c042283234d7?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Update Jackett app when updating Jackett LXC. ()

pull/3140/head
navels 11 months ago committed by GitHub
parent d280514505
commit 3c79305bca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -59,6 +59,15 @@ msg_info "Updating ${APP} LXC"
apt-get update &>/dev/null
apt-get -y upgrade &>/dev/null
msg_ok "Updated ${APP} LXC"
msg_info "Updating ${APP}"
RELEASE=$(wget -q https://github.com/Jackett/Jackett/releases/latest -O - | grep "title>Release" | cut -d " " -f 4)
wget -q https://github.com/Jackett/Jackett/releases/download/$RELEASE/Jackett.Binaries.LinuxAMDx64.tar.gz
systemctl stop jackett
rm -rf /opt/Jackett
tar -xzf Jackett.Binaries.LinuxAMDx64.tar.gz -C /opt
rm -rf Jackett.Binaries.LinuxAMDx64.tar.gz
systemctl start jackett
msg_ok "Updated ${APP} to ${RELEASE}"
exit
}

Loading…
Cancel
Save

Powered by BW's shoe-string budget.