396 lines
15 KiB
Bash
396 lines
15 KiB
Bash
#!/usr/bin/env bash
|
||
|
||
# Copyright (c) 2021-2025 tteck
|
||
# Author: tteckster | MickLesk (CanbiZ)
|
||
# License: MIT
|
||
# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||
|
||
header_info() {
|
||
clear
|
||
cat <<"EOF"
|
||
____ _ ________ ____ __ ____ __ ____
|
||
/ __ \ | / / ____/ / __ \____ _____/ /_ / _/___ _____/ /_____ _/ / /
|
||
/ /_/ / | / / __/ / /_/ / __ \/ ___/ __/ / // __ \/ ___/ __/ __ `/ / /
|
||
/ ____/| |/ / /___ / ____/ /_/ (__ ) /_ _/ // / / (__ ) /_/ /_/ / / /
|
||
/_/ |___/_____/ /_/ \____/____/\__/ /___/_/ /_/____/\__/\__,_/_/_/
|
||
|
||
EOF
|
||
}
|
||
|
||
RD=$(echo "\033[01;31m")
|
||
YW=$(echo "\033[33m")
|
||
GN=$(echo "\033[1;92m")
|
||
CL=$(echo "\033[m")
|
||
BFR="\\r\\033[K"
|
||
HOLD="-"
|
||
CM="${GN}✓${CL}"
|
||
CROSS="${RD}✗${CL}"
|
||
|
||
set -euo pipefail
|
||
shopt -s inherit_errexit nullglob
|
||
|
||
msg_info() {
|
||
local msg="$1"
|
||
echo -ne " ${HOLD} ${YW}${msg}..."
|
||
}
|
||
|
||
msg_ok() {
|
||
local msg="$1"
|
||
echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
|
||
}
|
||
|
||
msg_error() {
|
||
local msg="$1"
|
||
echo -e "${BFR} ${CROSS} ${RD}${msg}${CL}"
|
||
}
|
||
|
||
get_pve_version() {
|
||
local pve_ver
|
||
pve_ver="$(pveversion | awk -F'/' '{print $2}' | awk -F'-' '{print $1}')"
|
||
echo "$pve_ver"
|
||
}
|
||
|
||
get_pve_major_minor() {
|
||
local ver="$1"
|
||
local major minor
|
||
IFS='.' read -r major minor _ <<<"$ver"
|
||
echo "$major $minor"
|
||
}
|
||
|
||
main() {
|
||
header_info
|
||
echo -e "\nThis script will Perform Post Install Routines.\n"
|
||
while true; do
|
||
read -p "Start the Proxmox VE Post Install Script (y/n)? " yn
|
||
case $yn in
|
||
[Yy]*) break ;;
|
||
[Nn]*)
|
||
clear
|
||
exit
|
||
;;
|
||
*) echo "Please answer yes or no." ;;
|
||
esac
|
||
done
|
||
|
||
local PVE_VERSION PVE_MAJOR PVE_MINOR
|
||
PVE_VERSION="$(get_pve_version)"
|
||
read -r PVE_MAJOR PVE_MINOR <<<"$(get_pve_major_minor "$PVE_VERSION")"
|
||
|
||
if [[ "$PVE_MAJOR" == "8" ]]; then
|
||
if ((PVE_MINOR < 0 || PVE_MINOR > 9)); then
|
||
msg_error "Unsupported Proxmox 8 version"
|
||
exit 1
|
||
fi
|
||
start_routines_8
|
||
elif [[ "$PVE_MAJOR" == "9" ]]; then
|
||
if ((PVE_MINOR != 0)); then
|
||
msg_error "Only Proxmox 9.0 is currently supported"
|
||
exit 1
|
||
fi
|
||
start_routines_9
|
||
else
|
||
msg_error "Unsupported Proxmox VE major version: $PVE_MAJOR"
|
||
echo -e "Supported: 8.0–8.9.x and 9.0"
|
||
exit 1
|
||
fi
|
||
}
|
||
|
||
start_routines_8() {
|
||
header_info
|
||
|
||
# === Bookworm/8.x: .list-Files ===
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "SOURCES" --menu "The package manager will use the correct sources to update and install packages on your Proxmox VE server.\n \nCorrect Proxmox VE sources?" 14 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Correcting Proxmox VE Sources"
|
||
cat <<EOF >/etc/apt/sources.list
|
||
deb http://deb.debian.org/debian bookworm main contrib
|
||
deb http://deb.debian.org/debian bookworm-updates main contrib
|
||
deb http://security.debian.org/debian-security bookworm-security main contrib
|
||
EOF
|
||
echo 'APT::Get::Update::SourceListWarnings::NonFreeFirmware "false";' >/etc/apt/apt.conf.d/no-bookworm-firmware.conf
|
||
msg_ok "Corrected Proxmox VE Sources"
|
||
;;
|
||
no) msg_error "Selected no to Correcting Proxmox VE Sources" ;;
|
||
esac
|
||
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "PVE-ENTERPRISE" --menu "The 'pve-enterprise' repository is only available to users who have purchased a Proxmox VE subscription.\n \nDisable 'pve-enterprise' repository?" 14 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Disabling 'pve-enterprise' repository"
|
||
cat <<EOF >/etc/apt/sources.list.d/pve-enterprise.list
|
||
# deb https://enterprise.proxmox.com/debian/pve bookworm pve-enterprise
|
||
EOF
|
||
msg_ok "Disabled 'pve-enterprise' repository"
|
||
;;
|
||
no) msg_error "Selected no to Disabling 'pve-enterprise' repository" ;;
|
||
esac
|
||
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "PVE-NO-SUBSCRIPTION" --menu "The 'pve-no-subscription' repository provides access to all of the open-source components of Proxmox VE.\n \nEnable 'pve-no-subscription' repository?" 14 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Enabling 'pve-no-subscription' repository"
|
||
cat <<EOF >/etc/apt/sources.list.d/pve-install-repo.list
|
||
deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription
|
||
EOF
|
||
msg_ok "Enabled 'pve-no-subscription' repository"
|
||
;;
|
||
no) msg_error "Selected no to Enabling 'pve-no-subscription' repository" ;;
|
||
esac
|
||
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "CEPH PACKAGE REPOSITORIES" --menu "The 'Ceph Package Repositories' provides access to both the 'no-subscription' and 'enterprise' repositories (initially disabled).\n \nCorrect 'ceph package sources?" 14 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Correcting 'ceph package repositories'"
|
||
cat <<EOF >/etc/apt/sources.list.d/ceph.list
|
||
# deb https://enterprise.proxmox.com/debian/ceph-quincy bookworm enterprise
|
||
# deb http://download.proxmox.com/debian/ceph-quincy bookworm no-subscription
|
||
# deb https://enterprise.proxmox.com/debian/ceph-reef bookworm enterprise
|
||
# deb http://download.proxmox.com/debian/ceph-reef bookworm no-subscription
|
||
EOF
|
||
msg_ok "Corrected 'ceph package repositories'"
|
||
;;
|
||
no) msg_error "Selected no to Correcting 'ceph package repositories'" ;;
|
||
esac
|
||
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "PVETEST" --menu "The 'pvetest' repository can give advanced users access to new features and updates before they are officially released.\n \nAdd (Disabled) 'pvetest' repository?" 14 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Adding 'pvetest' repository and set disabled"
|
||
cat <<EOF >/etc/apt/sources.list.d/pvetest-for-beta.list
|
||
# deb http://download.proxmox.com/debian/pve bookworm pvetest
|
||
EOF
|
||
msg_ok "Added 'pvetest' repository"
|
||
;;
|
||
no) msg_error "Selected no to Adding 'pvetest' repository" ;;
|
||
esac
|
||
|
||
post_routines_common
|
||
}
|
||
|
||
start_routines_9() {
|
||
header_info
|
||
|
||
# === Trixie/9.x: deb822 .sources ===
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "SOURCES" --menu "The package manager will use the correct sources to update and install packages on your Proxmox VE 9 server.\n\nMigrate to deb822 sources format?" 14 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Correcting Proxmox VE Sources (deb822)"
|
||
rm -f /etc/apt/sources.list.d/*.list
|
||
sed -i '/proxmox/d;/bookworm/d' /etc/apt/sources.list || true
|
||
# Modern Debian base sources (deb822)
|
||
cat >/etc/apt/sources.list.d/debian.sources <<EOF
|
||
Types: deb
|
||
URIs: http://deb.debian.org/debian
|
||
Suites: trixie
|
||
Components: main contrib
|
||
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg
|
||
|
||
Types: deb
|
||
URIs: http://security.debian.org/debian-security
|
||
Suites: trixie-security
|
||
Components: main contrib
|
||
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg
|
||
|
||
Types: deb
|
||
URIs: http://deb.debian.org/debian
|
||
Suites: trixie-updates
|
||
Components: main contrib
|
||
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg
|
||
EOF
|
||
msg_ok "Corrected Proxmox VE 9 (Trixie) Sources"
|
||
;;
|
||
no) msg_error "Selected no to Correcting Proxmox VE Sources" ;;
|
||
esac
|
||
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "PVE-ENTERPRISE" --menu "The 'pve-enterprise' repository is only available to users who have purchased a Proxmox VE subscription.\n \nAdd 'pve-enterprise' repository (deb822)?" 14 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Adding 'pve-enterprise' repository (deb822)"
|
||
cat >/etc/apt/sources.list.d/pve-enterprise.sources <<EOF
|
||
Types: deb
|
||
URIs: https://enterprise.proxmox.com/debian/pve
|
||
Suites: trixie
|
||
Components: pve-enterprise
|
||
Signed-By: /usr/share/keyrings/proxmox-archive-keyring.gpg
|
||
EOF
|
||
msg_ok "Added 'pve-enterprise' repository"
|
||
;;
|
||
no) msg_error "Selected no to Adding 'pve-enterprise' repository" ;;
|
||
esac
|
||
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "PVE-NO-SUBSCRIPTION" --menu "The 'pve-no-subscription' repository provides access to all of the open-source components of Proxmox VE.\n \nAdd 'pve-no-subscription' repository (deb822)?" 14 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Adding 'pve-no-subscription' repository (deb822)"
|
||
cat >/etc/apt/sources.list.d/proxmox.sources <<EOF
|
||
Types: deb
|
||
URIs: http://download.proxmox.com/debian/pve
|
||
Suites: trixie
|
||
Components: pve-no-subscription
|
||
Signed-By: /usr/share/keyrings/proxmox-archive-keyring.gpg
|
||
EOF
|
||
msg_ok "Added 'pve-no-subscription' repository"
|
||
;;
|
||
no) msg_error "Selected no to Adding 'pve-no-subscription' repository" ;;
|
||
esac
|
||
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "CEPH PACKAGE REPOSITORIES" --menu "The 'Ceph Package Repositories' provides access to both the 'no-subscription' and 'enterprise' repositories (deb822).\n \nAdd 'ceph package sources?" 14 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Adding 'ceph package repositories' (deb822)"
|
||
cat >/etc/apt/sources.list.d/ceph.sources <<EOF
|
||
Types: deb
|
||
URIs: http://download.proxmox.com/debian/ceph-squid
|
||
Suites: trixie
|
||
Components: no-subscription
|
||
Signed-By: /usr/share/keyrings/proxmox-archive-keyring.gpg
|
||
EOF
|
||
msg_ok "Added 'ceph package repositories'"
|
||
;;
|
||
no) msg_error "Selected no to Adding 'ceph package repositories'" ;;
|
||
esac
|
||
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "PVETEST" --menu "The 'pvetest' repository can give advanced users access to new features and updates before they are officially released.\n \nAdd (Disabled) 'pvetest' repository (deb822)?" 14 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Adding 'pvetest' repository (deb822, disabled)"
|
||
cat >/etc/apt/sources.list.d/pvetest.sources <<EOF
|
||
# Types: deb
|
||
# URIs: http://download.proxmox.com/debian/pve
|
||
# Suites: trixie
|
||
# Components: pvetest
|
||
# Signed-By: /usr/share/keyrings/proxmox-archive-keyring.gpg
|
||
EOF
|
||
msg_ok "Added 'pvetest' repository"
|
||
;;
|
||
no) msg_error "Selected no to Adding 'pvetest' repository" ;;
|
||
esac
|
||
|
||
post_routines_common
|
||
}
|
||
|
||
post_routines_common() {
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "SUBSCRIPTION NAG" --menu "This will disable the nag message reminding you to purchase a subscription every time you log in to the web interface.\n \nDisable subscription nag?" 14 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
whiptail --backtitle "Proxmox VE Helper Scripts" --msgbox --title "Support Subscriptions" "Supporting the software's development team is essential. Check their official website's Support Subscriptions for pricing. Without their dedicated work, we wouldn't have this exceptional software." 10 58
|
||
msg_info "Disabling subscription nag"
|
||
echo "DPkg::Post-Invoke { \"if [ -s /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js ] && ! grep -q -F 'NoMoreNagging' /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js; then echo 'Removing subscription nag from UI...'; sed -i '/data\.status/{s/\\!//;s/active/NoMoreNagging/}' /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js; fi\" };" >/etc/apt/apt.conf.d/no-nag-script
|
||
msg_ok "Disabled subscription nag (Delete browser cache)"
|
||
;;
|
||
no)
|
||
whiptail --backtitle "Proxmox VE Helper Scripts" --msgbox --title "Support Subscriptions" "Supporting the software's development team is essential. Check their official website's Support Subscriptions for pricing. Without their dedicated work, we wouldn't have this exceptional software." 10 58
|
||
msg_error "Selected no to Disabling subscription nag"
|
||
rm /etc/apt/apt.conf.d/no-nag-script 2>/dev/null
|
||
;;
|
||
esac
|
||
echo "BEFORE WIDGET"
|
||
apt --reinstall install proxmox-widget-toolkit &>/dev/null || msg_error "Widget toolkit reinstall failed"
|
||
echo "AFTER WIDGET"
|
||
if ! systemctl is-active --quiet pve-ha-lrm; then
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "HIGH AVAILABILITY" --menu "Enable high availability?" 10 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Enabling high availability"
|
||
systemctl enable -q --now pve-ha-lrm
|
||
systemctl enable -q --now pve-ha-crm
|
||
systemctl enable -q --now corosync
|
||
msg_ok "Enabled high availability"
|
||
;;
|
||
no) msg_error "Selected no to Enabling high availability" ;;
|
||
esac
|
||
fi
|
||
|
||
if systemctl is-active --quiet pve-ha-lrm; then
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "HIGH AVAILABILITY" --menu "If you plan to utilize a single node instead of a clustered environment, you can disable unnecessary high availability (HA) services, thus reclaiming system resources.\n\nIf HA becomes necessary at a later stage, the services can be re-enabled.\n\nDisable high availability?" 18 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Disabling high availability"
|
||
systemctl disable -q --now pve-ha-lrm
|
||
systemctl disable -q --now pve-ha-crm
|
||
msg_ok "Disabled high availability"
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "COROSYNC" --menu "Disable Corosync for a Proxmox VE Cluster?" 10 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Disabling Corosync"
|
||
systemctl disable -q --now corosync
|
||
msg_ok "Disabled Corosync"
|
||
;;
|
||
no) msg_error "Selected no to Disabling Corosync" ;;
|
||
esac
|
||
;;
|
||
no) msg_error "Selected no to Disabling high availability" ;;
|
||
esac
|
||
fi
|
||
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "UPDATE" --menu "\nUpdate Proxmox VE now?" 11 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Updating Proxmox VE (Patience)"
|
||
apt update &>/dev/null || msg_error "apt update failed"
|
||
apt -y dist-upgrade &>/dev/null || msg_error "apt dist-upgrade failed"
|
||
msg_ok "Updated Proxmox VE"
|
||
;;
|
||
no) msg_error "Selected no to Updating Proxmox VE" ;;
|
||
esac
|
||
|
||
# Final message for all hosts in cluster and browser cache
|
||
whiptail --backtitle "Proxmox VE Helper Scripts" --title "Post-Install Reminder" --msgbox \
|
||
"IMPORTANT:
|
||
If you have multiple Proxmox VE hosts in a cluster, please make sure to run this script on every node individually.
|
||
|
||
After completing these steps, it is strongly recommended to REBOOT your node.
|
||
|
||
After the upgrade or post-install routines, always clear your browser cache or perform a hard reload (Ctrl+Shift+R) before using the Proxmox VE Web UI to avoid UI display issues.
|
||
" 14 70
|
||
|
||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "REBOOT" --menu "\nReboot Proxmox VE now? (recommended)" 11 58 2 \
|
||
"yes" " " \
|
||
"no" " " 3>&2 2>&1 1>&3)
|
||
case $CHOICE in
|
||
yes)
|
||
msg_info "Rebooting Proxmox VE"
|
||
sleep 2
|
||
msg_ok "Completed Post Install Routines"
|
||
reboot
|
||
;;
|
||
no)
|
||
msg_error "Selected no to Rebooting Proxmox VE (Reboot recommended)"
|
||
msg_ok "Completed Post Install Routines"
|
||
;;
|
||
esac
|
||
}
|
||
|
||
main
|