Port Threadfin to ARM64

This commit is contained in:
Sam Heinz
2024-05-27 12:25:11 +10:00
parent 4f821fd9aa
commit 3aa2533b2e
3 changed files with 5 additions and 3 deletions
+1
View File
@@ -183,6 +183,7 @@ If you would like to offer support, I would appreciate a star on the repository,
| Tautulli | ☑️ | | | Tautulli | ☑️ | |
| Tdarr | ☑️ | | | Tdarr | ☑️ | |
| Technitium DNS | ☑️ | | | Technitium DNS | ☑️ | |
| Threadfin | ⭕ | |
| Traccar | ☑️ | | | Traccar | ☑️ | |
| Traefik | ⭕ | | | Traefik | ⭕ | |
| Transmission | ☑️ | | | Transmission | ☑️ | |
+2 -2
View File
@@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/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 # Copyright (c) 2021-2024 tteck
# Author: tteck (tteckster) # Author: tteck (tteckster)
# License: MIT # License: MIT
@@ -57,7 +57,7 @@ header_info
if [[ ! -d /opt/threadfin ]]; then msg_error "No ${APP} Installation Found!"; exit; fi if [[ ! -d /opt/threadfin ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_info "Updating $APP" msg_info "Updating $APP"
systemctl stop threadfin.service 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 chmod +x /opt/threadfin/threadfin
systemctl start threadfin.service systemctl start threadfin.service
msg_ok "Updated $APP" msg_ok "Updated $APP"
+2 -1
View File
@@ -19,11 +19,12 @@ $STD apt-get install -y mc
$STD apt-get install -y curl $STD apt-get install -y curl
$STD apt-get install -y ffmpeg $STD apt-get install -y ffmpeg
$STD apt-get install -y vlc $STD apt-get install -y vlc
$STD apt-get install -y wget
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing Threadfin" msg_info "Installing Threadfin"
mkdir -p /opt/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 chmod +x /opt/threadfin/threadfin
msg_ok "Installed Threadfin" msg_ok "Installed Threadfin"