From 4f154a2bf12cc955dd313e61e7017aa6b4778a0e Mon Sep 17 00:00:00 2001 From: tteckster Date: Sat, 15 Jul 2023 01:11:03 -0400 Subject: [PATCH] Update keycloak-install.sh openjdk 17 closes https://github.com/tteck/Proxmox/issues/1618 --- install/keycloak-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/keycloak-install.sh b/install/keycloak-install.sh index ba9d4198..e5081b8e 100644 --- a/install/keycloak-install.sh +++ b/install/keycloak-install.sh @@ -17,7 +17,8 @@ msg_info "Installing Dependencies (Patience)" $STD apt-get install -y curl $STD apt-get install -y sudo $STD apt-get install -y mc -$STD apt-get install -y openjdk-11-jdk +$STD apt-get install -y ca-certificates-java +$STD apt-get install -y openjdk-17-jre-headless msg_ok "Installed Dependencies" RELEASE=$(curl -s https://api.github.com/repos/keycloak/keycloak/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')