Port Olivetin MISC script to ARM64

This commit is contained in:
Sam Heinz
2024-04-15 11:14:29 +10:00
parent e0296037fe
commit 9db2626524
2 changed files with 10 additions and 3 deletions
+7
View File
@@ -190,3 +190,10 @@ If you would like to offer support, I would appreciate a star on the repository,
| Zigbee2MQTT | ☑️ | | | Zigbee2MQTT | ☑️ | |
| Zoraxy | ☑️ | | | Zoraxy | ☑️ | |
| Zwave-JS-UI | ☑️ | | | Zwave-JS-UI | ☑️ | |
## Miscellaneous Compatibility Guide
| Script | Status | Notes |
| --------- | ------ | -------------------- |
| Olivetin | ☑️ | |
| Tailscale | ✅ | No changes required. |
+3 -3
View File
@@ -51,10 +51,10 @@ function msg_ok() {
} }
msg_info "Installing ${APP}" msg_info "Installing ${APP}"
wget -q https://github.com/OliveTin/OliveTin/releases/latest/download/OliveTin_linux_amd64.deb wget -q https://github.com/OliveTin/OliveTin/releases/download/2024.04.11/OliveTin_linux_arm64.deb
dpkg -i OliveTin_linux_amd64.deb &>/dev/null dpkg -i OliveTin_linux_arm64.deb &>/dev/null
systemctl enable --now OliveTin &>/dev/null systemctl enable --now OliveTin &>/dev/null
rm OliveTin_linux_amd64.deb rm OliveTin_linux_arm64.deb
msg_ok "Installed ${APP} on $hostname" msg_ok "Installed ${APP} on $hostname"
msg_ok "Completed Successfully!\n" msg_ok "Completed Successfully!\n"