From 9e43b0623005dc43b3cb36a85125220872a1de97 Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Tue, 24 Jun 2025 13:30:47 +1000 Subject: [PATCH] port argus,babybuddy to arm64 --- ct/argus.sh | 2 +- frontend/public/json/statuses.json | 6 +++--- install/argus-install.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ct/argus.sh b/ct/argus.sh index 2a691832d..265ff7154 100644 --- a/ct/argus.sh +++ b/ct/argus.sh @@ -33,7 +33,7 @@ function update_script() { if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then msg_info "Updating $APP to ${RELEASE}" rm -f /opt/argus/Argus - curl -fsSL "https://github.com/release-argus/Argus/releases/download/${RELEASE}/Argus-${RELEASE}.linux-amd64" -o /opt/argus/Argus + curl -fsSL "https://github.com/release-argus/Argus/releases/download/${RELEASE}/Argus-${RELEASE}.linux-arm64" -o /opt/argus/Argus chmod +x /opt/argus/Argus systemctl restart argus echo "${RELEASE}" >/opt/${APP}_version.txt diff --git a/frontend/public/json/statuses.json b/frontend/public/json/statuses.json index e99469876..b26d2b4b8 100644 --- a/frontend/public/json/statuses.json +++ b/frontend/public/json/statuses.json @@ -19,13 +19,13 @@ "apt-cacher-ng.json": "โœ…", "archivebox.json": "โœ…", "archlinux-vm.json": "๐Ÿšง", - "argus.json": "๐Ÿšง", + "argus.json": "๐Ÿงช", "aria2.json": "โœ…", "asterisk.json": "๐Ÿงช", "audiobookshelf.json": "โœ…", "authelia.json": "โœ…", "autobrr.json": "โœ…", - "babybuddy.json": "๐Ÿšง", + "babybuddy.json": "๐Ÿงช", "backrest.json": "๐Ÿšง", "baikal.json": "โœ…", "barcode-buddy.json": "โœ…", @@ -354,4 +354,4 @@ "zoraxy.json": "โœ…", "zot-registry.json": "๐Ÿšง", "zwave-js-ui.json": "โœ…" -} \ No newline at end of file +} diff --git a/install/argus-install.sh b/install/argus-install.sh index 9d92ce708..ca2138e8e 100644 --- a/install/argus-install.sh +++ b/install/argus-install.sh @@ -21,7 +21,7 @@ msg_ok "Installed Dependencies" msg_info "Setup Argus" RELEASE=$(curl -fsSL https://api.github.com/repos/release-argus/Argus/releases/latest | jq -r .tag_name | sed 's/^v//') mkdir -p /opt/argus -curl -fsSL "https://github.com/release-argus/Argus/releases/download/${RELEASE}/Argus-${RELEASE}.linux-amd64" -o /opt/argus/Argus +curl -fsSL "https://github.com/release-argus/Argus/releases/download/${RELEASE}/Argus-${RELEASE}.linux-arm64" -o /opt/argus/Argus chmod +x /opt/argus/Argus msg_ok "Setup Argus"