From 9db262652491050c6a0b9e95e75f9976d3f91462 Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Mon, 15 Apr 2024 11:14:29 +1000 Subject: [PATCH] Port Olivetin MISC script to ARM64 --- README.md | 7 +++++++ misc/olivetin.sh | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fe236cf9b..0124d4f73 100644 --- a/README.md +++ b/README.md @@ -190,3 +190,10 @@ If you would like to offer support, I would appreciate a star on the repository, | Zigbee2MQTT | ☑️ | | | Zoraxy | ☑️ | | | Zwave-JS-UI | ☑️ | | + +## Miscellaneous Compatibility Guide + +| Script | Status | Notes | +| --------- | ------ | -------------------- | +| Olivetin | ☑️ | | +| Tailscale | ✅ | No changes required. | diff --git a/misc/olivetin.sh b/misc/olivetin.sh index f3909ad99..f130666c2 100644 --- a/misc/olivetin.sh +++ b/misc/olivetin.sh @@ -51,10 +51,10 @@ function msg_ok() { } msg_info "Installing ${APP}" -wget -q https://github.com/OliveTin/OliveTin/releases/latest/download/OliveTin_linux_amd64.deb -dpkg -i OliveTin_linux_amd64.deb &>/dev/null +wget -q https://github.com/OliveTin/OliveTin/releases/download/2024.04.11/OliveTin_linux_arm64.deb +dpkg -i OliveTin_linux_arm64.deb &>/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 "Completed Successfully!\n"