Revert "Move changes from test branch to upstream merge branch"

This reverts commit 3bbbffb688.
This commit is contained in:
Sam Heinz
2025-01-08 00:13:54 +10:00
parent 9263adb8cf
commit 3f899fd0fe
213 changed files with 1315 additions and 1741 deletions
+7 -4
View File
@@ -1,10 +1,11 @@
#!/usr/bin/env bash
#Copyright (c) 2021-2025 community-scripts ORG
#Copyright (c) 2021-2024 community-scripts ORG
# Author: Michel Roegl-Brunner (michelroegl-brunner)
# License: MIT
# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# ! DOES NOT SUPPORT ARM64 !
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
@@ -19,14 +20,16 @@ $STD apt-get install -y \
curl \
sudo \
mc \
wget \
openssh-server
openssh-server \
wget
msg_ok "Installed Dependencies"
msg_info "Install Checkmk"
RELEASE=$(curl -fsSL https://api.github.com/repos/checkmk/checkmk/tags | grep "name" | awk '{print substr($2, 3, length($2)-4) }' | grep -v "*-rc" | tail -n +2 | head -n 1)
wget -q https://download.checkmk.com/checkmk/${RELEASE}/check-mk-raw-${RELEASE}_0.bookworm_arm64.deb -O /opt/checkmk.deb
wget -q https://download.checkmk.com/checkmk/v2.3.0p23/check-mk-raw-v2.3.0p23_0.bookworm_arm64.deb -O /opt/checkmk.deb
$STD apt-get install -y /opt/checkmk.deb
$STD apt-get install -y openssh-server
$STD apt-get install -y wget
echo "${RELEASE}" >"/opt/checkmk_version.txt"
msg_ok "Installed Checkmk"