From 760480c676e92d6ca58f2a2eb66da0d81b731ab3 Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Mon, 8 Apr 2024 17:49:53 +1000 Subject: [PATCH] Port Apache Cassandra to ARM64 --- README.md | 3 ++- ct/apache-cassandra.sh | 2 +- install/apache-cassandra-install.sh | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 94cebe74d..36875e809 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,9 @@ Any applications not in ported or unsupported need to be tested for whether they
  • ActualBudget
  • Adguard
  • AgentDVR
  • +
  • Apache Cassandra
  • Docker
  • -
  • Prowlarr +
  • Prowlarr
  • Radarr
  • Sonarr
  • diff --git a/ct/apache-cassandra.sh b/ct/apache-cassandra.sh index 35f83dff9..adf0d3e4b 100644 --- a/ct/apache-cassandra.sh +++ b/ct/apache-cassandra.sh @@ -1,5 +1,5 @@ #!/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 # Author: tteck (tteckster) # License: MIT diff --git a/install/apache-cassandra-install.sh b/install/apache-cassandra-install.sh index da0c1f40f..a3d420300 100644 --- a/install/apache-cassandra-install.sh +++ b/install/apache-cassandra-install.sh @@ -19,11 +19,12 @@ $STD apt-get install -y sudo $STD apt-get install -y mc $STD apt-get install -y apt-transport-https $STD apt-get install -y gpg +$STD apt-get install -y wget msg_ok "Installed Dependencies" msg_info "Installing Eclipse Temurin (Patience)" wget -qO- https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor >/etc/apt/trusted.gpg.d/adoptium.gpg -echo 'deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/adoptium.gpg] https://packages.adoptium.net/artifactory/deb bookworm main' >/etc/apt/sources.list.d/adoptium.list +echo 'deb [arch=arm64 signed-by=/etc/apt/trusted.gpg.d/adoptium.gpg] https://packages.adoptium.net/artifactory/deb bookworm main' >/etc/apt/sources.list.d/adoptium.list $STD apt-get update $STD apt-get install -y temurin-11-jdk msg_ok "Installed Eclipse Temurin"