From ba990514c45b7c35d0182016e7a4a06417fc1c9b Mon Sep 17 00:00:00 2001 From: flatlinebb <4769578+flatlinebb@users.noreply.github.com> Date: Sun, 2 Mar 2025 02:33:57 -0800 Subject: [PATCH] Fix gpg Repo for nzbget (#2774) * Update nzbget-install.sh Added [arch=all] to the nzbget repo line to fix apt update errors. * Update install/nzbget-install.sh Co-authored-by: bvdberg01 <74251551+bvdberg01@users.noreply.github.com> --------- Co-authored-by: bvdberg01 <74251551+bvdberg01@users.noreply.github.com> --- install/nzbget-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/nzbget-install.sh b/install/nzbget-install.sh index ee63eab0..c6a7098a 100644 --- a/install/nzbget-install.sh +++ b/install/nzbget-install.sh @@ -31,7 +31,7 @@ msg_ok "Installed Dependencies" msg_info "Installing NZBGet" mkdir -p /etc/apt/keyrings curl -fsSL https://nzbgetcom.github.io/nzbgetcom.asc | gpg --dearmor -o /etc/apt/keyrings/nzbgetcom.gpg -echo "deb [signed-by=/etc/apt/keyrings/nzbgetcom.gpg] https://nzbgetcom.github.io/deb stable main" >/etc/apt/sources.list.d/nzbgetcom.list +echo "deb [arch=all signed-by=/etc/apt/keyrings/nzbgetcom.gpg] https://nzbgetcom.github.io/deb stable main" >/etc/apt/sources.list.d/nzbgetcom.list $STD apt-get update $STD apt-get install -y nzbget msg_ok "Installed NZBGet"