From 3aa2533b2e61d2237f953bf76d773bd1263c805d Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Mon, 27 May 2024 12:25:11 +1000 Subject: [PATCH] Port Threadfin to ARM64 --- README.md | 1 + ct/threadfin.sh | 4 ++-- install/threadfin-install.sh | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 482556a1c..95873df16 100644 --- a/README.md +++ b/README.md @@ -183,6 +183,7 @@ If you would like to offer support, I would appreciate a star on the repository, | Tautulli | ☑️ | | | Tdarr | ☑️ | | | Technitium DNS | ☑️ | | +| Threadfin | ⭕ | | | Traccar | ☑️ | | | Traefik | ⭕ | | | Transmission | ☑️ | | diff --git a/ct/threadfin.sh b/ct/threadfin.sh index e870e26ca..1778ba3c0 100644 --- a/ct/threadfin.sh +++ b/ct/threadfin.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func) # Copyright (c) 2021-2024 tteck # Author: tteck (tteckster) # License: MIT @@ -57,7 +57,7 @@ header_info if [[ ! -d /opt/threadfin ]]; then msg_error "No ${APP} Installation Found!"; exit; fi msg_info "Updating $APP" systemctl stop threadfin.service -wget -q -O /opt/threadfin/threadfin 'https://github.com/Threadfin/Threadfin/releases/latest/download/Threadfin_linux_amd64' +wget -q -O /opt/threadfin/threadfin 'https://github.com/Threadfin/Threadfin/releases/latest/download/Threadfin_linux_arm64' chmod +x /opt/threadfin/threadfin systemctl start threadfin.service msg_ok "Updated $APP" diff --git a/install/threadfin-install.sh b/install/threadfin-install.sh index 5fb8211d4..57d2b9f73 100644 --- a/install/threadfin-install.sh +++ b/install/threadfin-install.sh @@ -19,11 +19,12 @@ $STD apt-get install -y mc $STD apt-get install -y curl $STD apt-get install -y ffmpeg $STD apt-get install -y vlc +$STD apt-get install -y wget msg_ok "Installed Dependencies" msg_info "Installing Threadfin" mkdir -p /opt/threadfin -wget -q -O /opt/threadfin/threadfin 'https://github.com/Threadfin/Threadfin/releases/latest/download/Threadfin_linux_amd64' +wget -q -O /opt/threadfin/threadfin 'https://github.com/Threadfin/Threadfin/releases/latest/download/Threadfin_linux_arm64' chmod +x /opt/threadfin/threadfin msg_ok "Installed Threadfin"