Port several apps + update statuses

chore(statuses): update script statuses after arm64 port

- Promote some scripts to “” (success):
  • babybuddy
  • graylog

- Reclassify a few as “” (error):
  • freepbx
  • sqlserver2022
  • umlautadaptarr
  • urbackupserver

- Mark many as “🧪” (testing required):
  • backrest
  • bitmagnet
  • cloudflare-ddns
  • configarr
  • gitea-mirror
  • slskd
  • snipeit
  • streamlink-webui
  • tasmocompiler
  • the-lounge
  • typesense
  • victoriametrics
  • vikunja
  • wallos
  • wavelog
  • wizarr
This commit is contained in:
Sam Heinz
2025-06-24 21:35:22 +10:00
parent 4ce0663474
commit a23ba93828
15 changed files with 49 additions and 50 deletions
+3 -3
View File
@@ -36,9 +36,9 @@ function update_script() {
msg_info "Updating ${APP} to ${RELEASE}"
cd /opt
rm -rf /opt/vikunja/vikunja
curl -fsSL "https://dl.vikunja.io/vikunja/$RELEASE/vikunja-$RELEASE-amd64.deb" -o $(basename "https://dl.vikunja.io/vikunja/$RELEASE/vikunja-$RELEASE-amd64.deb")
curl -fsSL "https://dl.vikunja.io/vikunja/$RELEASE/vikunja-$RELEASE-arm64.deb" -o $(basename "https://dl.vikunja.io/vikunja/$RELEASE/vikunja-$RELEASE-arm64.deb")
export DEBIAN_FRONTEND=noninteractive
$STD dpkg -i vikunja-$RELEASE-amd64.deb
$STD dpkg -i vikunja-$RELEASE-arm64.deb
echo "${RELEASE}" >/opt/${APP}_version.txt
msg_ok "Updated ${APP}"
@@ -47,7 +47,7 @@ function update_script() {
msg_ok "Started ${APP}"
msg_info "Cleaning Up"
rm -rf /opt/vikunja-$RELEASE-amd64.deb
rm -rf /opt/vikunja-$RELEASE-arm64.deb
msg_ok "Cleaned"
msg_ok "Updated Successfully"
else