2023-12-19 19:49:20 -05:00
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
2025-01-01 13:37:29 +01:00
|
|
|
|
# Copyright (c) 2021-2025 tteck
|
2023-12-19 19:49:20 -05:00
|
|
|
|
# Author: tteck (tteckster)
|
|
|
|
|
|
# License: MIT
|
2024-11-02 08:48:05 +01:00
|
|
|
|
# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
2023-12-19 19:49:20 -05:00
|
|
|
|
|
2023-12-20 11:25:00 -05:00
|
|
|
|
function header_info {
|
2025-04-01 10:25:46 +02:00
|
|
|
|
clear
|
|
|
|
|
|
cat <<"EOF"
|
2023-12-19 19:49:20 -05:00
|
|
|
|
_ __ __ ____ __
|
|
|
|
|
|
/ | / /__ / /_/ __ \____ _/ /_____ _
|
|
|
|
|
|
/ |/ / _ \/ __/ / / / __ `/ __/ __ `/
|
|
|
|
|
|
/ /| / __/ /_/ /_/ / /_/ / /_/ /_/ /
|
|
|
|
|
|
/_/ |_/\___/\__/_____/\__,_/\__/\__,_/
|
|
|
|
|
|
|
|
|
|
|
|
EOF
|
2023-12-20 11:25:00 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
YW=$(echo "\033[33m")
|
|
|
|
|
|
BL=$(echo "\033[36m")
|
|
|
|
|
|
RD=$(echo "\033[01;31m")
|
|
|
|
|
|
GN=$(echo "\033[1;92m")
|
|
|
|
|
|
CL=$(echo "\033[m")
|
|
|
|
|
|
BFR="\\r\\033[K"
|
|
|
|
|
|
HOLD="-"
|
|
|
|
|
|
CM="${GN}✓${CL}"
|
|
|
|
|
|
silent() { "$@" >/dev/null 2>&1; }
|
|
|
|
|
|
set -e
|
|
|
|
|
|
header_info
|
2023-12-22 19:45:53 -05:00
|
|
|
|
echo "Loading..."
|
2023-12-20 11:25:00 -05:00
|
|
|
|
function msg_info() {
|
|
|
|
|
|
local msg="$1"
|
|
|
|
|
|
echo -ne " ${HOLD} ${YW}${msg}..."
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function msg_ok() {
|
|
|
|
|
|
local msg="$1"
|
|
|
|
|
|
echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
|
|
|
|
|
|
}
|
2023-12-19 19:49:20 -05:00
|
|
|
|
|
2025-08-20 14:00:10 +02:00
|
|
|
|
function msg_error() { echo -e "${RD}✗ $1${CL}"; }
|
|
|
|
|
|
|
2025-09-04 10:28:09 +02:00
|
|
|
|
# This function checks the version of Proxmox Virtual Environment (PVE) and exits if the version is not supported.
|
|
|
|
|
|
# Supported: Proxmox VE 8.0.x – 8.9.x and 9.0 (NOT 9.1+)
|
2025-08-20 14:00:10 +02:00
|
|
|
|
pve_check() {
|
|
|
|
|
|
local PVE_VER
|
|
|
|
|
|
PVE_VER="$(pveversion | awk -F'/' '{print $2}' | awk -F'-' '{print $1}')"
|
|
|
|
|
|
|
2025-09-04 10:28:09 +02:00
|
|
|
|
# Check for Proxmox VE 8.x: allow 8.0–8.9
|
|
|
|
|
|
if [[ "$PVE_VER" =~ ^8\.([0-9]+) ]]; then
|
2025-08-20 14:00:10 +02:00
|
|
|
|
local MINOR="${BASH_REMATCH[1]}"
|
2025-09-04 10:28:09 +02:00
|
|
|
|
if ((MINOR < 0 || MINOR > 9)); then
|
|
|
|
|
|
msg_error "This version of Proxmox VE is not supported."
|
|
|
|
|
|
msg_error "Supported: Proxmox VE version 8.0 – 8.9"
|
2025-08-20 14:00:10 +02:00
|
|
|
|
exit 1
|
|
|
|
|
|
fi
|
|
|
|
|
|
return 0
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
2025-09-04 10:28:09 +02:00
|
|
|
|
# Check for Proxmox VE 9.x: allow ONLY 9.0
|
|
|
|
|
|
if [[ "$PVE_VER" =~ ^9\.([0-9]+) ]]; then
|
2025-08-20 14:00:10 +02:00
|
|
|
|
local MINOR="${BASH_REMATCH[1]}"
|
|
|
|
|
|
if ((MINOR != 0)); then
|
2025-09-04 10:28:09 +02:00
|
|
|
|
msg_error "This version of Proxmox VE is not yet supported."
|
|
|
|
|
|
msg_error "Supported: Proxmox VE version 9.0"
|
2025-08-20 14:00:10 +02:00
|
|
|
|
exit 1
|
|
|
|
|
|
fi
|
|
|
|
|
|
return 0
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
2025-09-04 10:28:09 +02:00
|
|
|
|
# All other unsupported versions
|
|
|
|
|
|
msg_error "This version of Proxmox VE is not supported."
|
|
|
|
|
|
msg_error "Supported versions: Proxmox VE 8.0 – 8.x or 9.0"
|
2025-08-20 14:00:10 +02:00
|
|
|
|
exit 1
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
detect_codename() {
|
|
|
|
|
|
source /etc/os-release
|
|
|
|
|
|
if [[ "$ID" != "debian" ]]; then
|
|
|
|
|
|
msg_error "Unsupported base OS: $ID (only Proxmox VE / Debian supported)."
|
|
|
|
|
|
exit 1
|
|
|
|
|
|
fi
|
|
|
|
|
|
CODENAME="${VERSION_CODENAME:-}"
|
|
|
|
|
|
if [[ -z "$CODENAME" ]]; then
|
|
|
|
|
|
msg_error "Could not detect Debian codename."
|
|
|
|
|
|
exit 1
|
|
|
|
|
|
fi
|
|
|
|
|
|
echo "$CODENAME"
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
get_latest_repo_pkg() {
|
|
|
|
|
|
local REPO_URL=$1
|
|
|
|
|
|
curl -fsSL "$REPO_URL" |
|
|
|
|
|
|
grep -oP 'netdata-repo_[^"]+all\.deb' |
|
|
|
|
|
|
sort -V |
|
|
|
|
|
|
tail -n1
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-12-19 19:49:20 -05:00
|
|
|
|
install() {
|
2023-12-22 19:45:53 -05:00
|
|
|
|
header_info
|
2023-12-20 11:25:00 -05:00
|
|
|
|
while true; do
|
2025-08-20 14:00:10 +02:00
|
|
|
|
read -p "Are you sure you want to install NetData on Proxmox VE host. Proceed(y/n)? " yn
|
2023-12-20 11:25:00 -05:00
|
|
|
|
case $yn in
|
|
|
|
|
|
[Yy]*) break ;;
|
|
|
|
|
|
[Nn]*) exit ;;
|
|
|
|
|
|
*) echo "Please answer yes or no." ;;
|
|
|
|
|
|
esac
|
|
|
|
|
|
done
|
2025-08-20 14:00:10 +02:00
|
|
|
|
|
2023-12-20 11:25:00 -05:00
|
|
|
|
read -r -p "Verbose mode? <y/N> " prompt
|
2025-08-20 14:00:10 +02:00
|
|
|
|
[[ ${prompt,,} =~ ^(y|yes)$ ]] && STD="" || STD="silent"
|
|
|
|
|
|
|
|
|
|
|
|
CODENAME=$(detect_codename)
|
|
|
|
|
|
REPO_URL="https://repo.netdata.cloud/repos/repoconfig/debian/${CODENAME}/"
|
2023-12-22 19:45:53 -05:00
|
|
|
|
|
2023-12-20 11:25:00 -05:00
|
|
|
|
msg_info "Setting up repository"
|
2025-03-29 14:04:28 +01:00
|
|
|
|
$STD apt-get install -y debian-keyring
|
2025-08-20 14:00:10 +02:00
|
|
|
|
PKG=$(get_latest_repo_pkg "$REPO_URL")
|
|
|
|
|
|
if [[ -z "$PKG" ]]; then
|
|
|
|
|
|
msg_error "Could not find netdata-repo package for Debian $CODENAME"
|
|
|
|
|
|
exit 1
|
|
|
|
|
|
fi
|
|
|
|
|
|
curl -fsSL "${REPO_URL}${PKG}" -o "$PKG"
|
|
|
|
|
|
$STD dpkg -i "$PKG"
|
|
|
|
|
|
rm -f "$PKG"
|
2023-12-20 11:25:00 -05:00
|
|
|
|
msg_ok "Set up repository"
|
2023-12-19 19:49:20 -05:00
|
|
|
|
|
2023-12-20 11:25:00 -05:00
|
|
|
|
msg_info "Installing Netdata"
|
|
|
|
|
|
$STD apt-get update
|
|
|
|
|
|
$STD apt-get install -y netdata
|
2023-12-22 19:45:53 -05:00
|
|
|
|
msg_ok "Installed Netdata"
|
2023-12-20 11:25:00 -05:00
|
|
|
|
msg_ok "Completed Successfully!\n"
|
|
|
|
|
|
echo -e "\n Netdata should be reachable at${BL} http://$(hostname -I | awk '{print $1}'):19999 ${CL}\n"
|
2023-12-19 19:49:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uninstall() {
|
2023-12-22 19:45:53 -05:00
|
|
|
|
header_info
|
2023-12-20 11:25:00 -05:00
|
|
|
|
read -r -p "Verbose mode? <y/N> " prompt
|
2025-08-20 14:00:10 +02:00
|
|
|
|
[[ ${prompt,,} =~ ^(y|yes)$ ]] && STD="" || STD="silent"
|
2023-12-22 19:45:53 -05:00
|
|
|
|
|
|
|
|
|
|
msg_info "Uninstalling Netdata"
|
2025-08-20 14:00:10 +02:00
|
|
|
|
systemctl stop netdata || true
|
2023-12-20 11:25:00 -05:00
|
|
|
|
rm -rf /var/log/netdata /var/lib/netdata /var/cache/netdata /etc/netdata/go.d
|
|
|
|
|
|
rm -rf /etc/apt/trusted.gpg.d/netdata-archive-keyring.gpg /etc/apt/sources.list.d/netdata.list
|
|
|
|
|
|
$STD apt-get remove --purge -y netdata netdata-repo
|
|
|
|
|
|
systemctl daemon-reload
|
|
|
|
|
|
$STD apt autoremove -y
|
2025-08-20 14:00:10 +02:00
|
|
|
|
$STD userdel netdata || true
|
2023-12-22 19:45:53 -05:00
|
|
|
|
msg_ok "Uninstalled Netdata"
|
2023-12-20 11:25:00 -05:00
|
|
|
|
msg_ok "Completed Successfully!\n"
|
2023-12-19 19:49:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-20 14:00:10 +02:00
|
|
|
|
header_info
|
|
|
|
|
|
pve_check
|
2023-12-19 19:49:20 -05:00
|
|
|
|
|
2025-04-01 10:25:46 +02:00
|
|
|
|
OPTIONS=(Install "Install NetData on Proxmox VE"
|
|
|
|
|
|
Uninstall "Uninstall NetData from Proxmox VE")
|
2023-12-19 19:49:20 -05:00
|
|
|
|
|
2025-08-20 14:00:10 +02:00
|
|
|
|
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "NetData" \
|
|
|
|
|
|
--menu "Select an option:" 10 58 2 "${OPTIONS[@]}" 3>&1 1>&2 2>&3)
|
2023-12-19 19:49:20 -05:00
|
|
|
|
|
|
|
|
|
|
case $CHOICE in
|
2025-08-20 14:00:10 +02:00
|
|
|
|
"Install") install ;;
|
|
|
|
|
|
"Uninstall") uninstall ;;
|
2025-04-01 10:25:46 +02:00
|
|
|
|
*)
|
|
|
|
|
|
echo "Exiting..."
|
|
|
|
|
|
exit 0
|
|
|
|
|
|
;;
|
2023-12-19 19:49:20 -05:00
|
|
|
|
esac
|