2023-02-07 18:15:22 +01:00
#!/usr/bin/env bash
# Copyright (c) 2021-2023 tteck
# Author: tteck (tteckster)
# License: MIT
# https://github.com/tteck/Proxmox/raw/main/LICENSE
2023-04-24 18:06:45 +02:00
header_info( ) {
clear
cat <<"EOF"
2023-01-10 16:56:36 +01:00
____ _ _____________ ____ __ ____ __ ____
/ __ \ | / / ____/__ / / __ \_ ___ _____/ /_ / _/___ _____/ /_____ _/ / /
/ /_/ / | / / __/ / / / /_/ / __ \/ ___/ __/ / // __ \/ ___/ __/ __ / / /
/ ____/| | / / /___ / / / ____/ /_/ ( __ ) /_ _/ // / / ( __ ) /_/ /_/ / / /
/_/ | ___/_____/ /_/ /_/ \_ ___/____/\_ _/ /___/_/ /_/____/\_ _/\_ _,_/_/_/
EOF
}
2023-04-24 18:06:45 +02:00
2022-10-30 02:04:45 +01:00
RD = $( echo "\033[01;31m" )
2023-04-24 18:06:45 +02:00
YW = $( echo "\033[33m" )
2022-10-30 02:04:45 +01:00
GN = $( echo "\033[1;92m" )
CL = $( echo "\033[m" )
2022-04-23 17:15:56 +02:00
BFR = "\\r\\033[K"
HOLD = "-"
CM = " ${ GN } ✓ ${ CL } "
CROSS = " ${ RD } ✗ ${ CL } "
2022-09-21 18:22:29 +02:00
2023-04-24 18:06:45 +02:00
set -euo pipefail
shopt -s inherit_errexit nullglob
2022-04-23 17:15:56 +02:00
2023-04-24 18:06:45 +02:00
msg_info( ) {
2022-04-23 17:15:56 +02:00
local msg = " $1 "
echo -ne " ${ HOLD } ${ YW } ${ msg } ... "
}
2023-04-24 18:06:45 +02:00
msg_ok( ) {
2022-04-23 17:15:56 +02:00
local msg = " $1 "
echo -e " ${ BFR } ${ CM } ${ GN } ${ msg } ${ CL } "
}
2023-04-24 18:06:45 +02:00
msg_error( ) {
local msg = " $1 "
echo -e " ${ BFR } ${ CROSS } ${ RD } ${ msg } ${ CL } "
}
exit_script( ) {
clear
echo -e "⚠ User exited script \n"
exit
}
start_routines( ) {
header_info
CHOICE = $(
2023-04-25 03:05:10 +02:00
whiptail --title "Proxmox VE 7 Post Install" --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 \
2023-04-24 18:06:45 +02:00
"yes" " " \
"no" " " 3>& 2 2>& 1 1>& 3
)
exit_status = $?
if [ $exit_status = = 1 ] ; then
exit_script
fi
case $CHOICE in
yes)
2023-04-25 03:05:10 +02:00
msg_info "Disabling 'pve-enterprise' repository"
2023-03-08 20:55:40 +01:00
sed -i 's/^deb/#deb/g' /etc/apt/sources.list.d/pve-enterprise.list
2023-04-25 03:05:10 +02:00
msg_ok "Disabled 'pve-enterprise' repository"
2023-04-24 18:06:45 +02:00
; ;
no)
2023-04-25 03:05:10 +02:00
msg_error "Selected no to Disabling 'pve-enterprise' repository"
2023-04-24 18:06:45 +02:00
; ;
esac
2022-04-23 17:15:56 +02:00
2023-04-24 18:06:45 +02:00
CHOICE = $(
2023-04-25 03:05:10 +02:00
whiptail --title "Proxmox VE 7 Post Install" --menu "The package manager will use the correct sources to update and install packages on your Proxmox VE 7 server.\n \nCorrect Proxmox VE 7 sources?" 14 58 2 \
2023-04-24 18:06:45 +02:00
"yes" " " \
"no" " " 3>& 2 2>& 1 1>& 3
)
exit_status = $?
if [ $exit_status = = 1 ] ; then
exit_script
fi
case $CHOICE in
yes)
2023-04-25 03:05:10 +02:00
msg_info "Correcting Proxmox VE 7 Sources"
2022-10-30 02:04:45 +01:00
cat <<EOF >/etc/apt/sources.list
2022-04-23 17:15:56 +02:00
deb http://ftp.debian.org/debian bullseye main contrib
deb http://ftp.debian.org/debian bullseye-updates main contrib
deb http://security.debian.org/debian-security bullseye-security main contrib
EOF
2023-04-25 03:05:10 +02:00
msg_ok "Corrected Proxmox VE 7 Sources"
2023-04-24 18:06:45 +02:00
; ;
no)
2023-04-25 03:05:10 +02:00
msg_error "Selected no to Correcting Proxmox VE 7 Sources"
2023-04-24 18:06:45 +02:00
; ;
esac
2022-04-23 17:15:56 +02:00
2023-04-24 18:06:45 +02:00
CHOICE = $(
2023-04-25 03:05:10 +02:00
whiptail --title "Proxmox VE 7 Post Install" --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 \
2023-04-24 18:06:45 +02:00
"yes" " " \
"no" " " 3>& 2 2>& 1 1>& 3
)
exit_status = $?
if [ $exit_status = = 1 ] ; then
exit_script
fi
case $CHOICE in
yes)
2023-04-25 03:05:10 +02:00
msg_info "Enabling 'pve-no-subscription' repository"
2022-10-30 02:04:45 +01:00
cat <<EOF >>/etc/apt/sources.list
2022-04-23 17:15:56 +02:00
deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription
EOF
2023-04-25 03:05:10 +02:00
msg_ok "Enabled 'pve-no-subscription' repository"
2023-04-24 18:06:45 +02:00
; ;
no)
2023-04-25 03:05:10 +02:00
msg_error "Selected no to Enabling 'pve-no-subscription' repository"
2023-04-24 18:06:45 +02:00
; ;
esac
2022-04-23 17:15:56 +02:00
2023-04-24 18:06:45 +02:00
CHOICE = $(
2023-04-25 03:05:10 +02:00
whiptail --title "Proxmox VE 7 Post Install" --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 \
2023-04-24 18:06:45 +02:00
"yes" " " \
"no" " " 3>& 2 2>& 1 1>& 3
)
exit_status = $?
if [ $exit_status = = 1 ] ; then
exit_script
fi
case $CHOICE in
yes)
2023-04-25 03:05:10 +02:00
msg_info "Adding 'pvetest' repository and set disabled"
2022-10-30 02:04:45 +01:00
cat <<EOF >>/etc/apt/sources.list
2022-04-23 17:15:56 +02:00
# deb http://download.proxmox.com/debian/pve bullseye pvetest
EOF
2023-04-25 03:05:10 +02:00
msg_ok "Added 'pvetest' repository"
2023-04-24 18:06:45 +02:00
; ;
no)
2023-04-25 03:05:10 +02:00
msg_error "Selected no to Adding 'pvetest' repository"
2023-04-24 18:06:45 +02:00
; ;
esac
2022-04-23 17:15:56 +02:00
2023-04-24 18:06:45 +02:00
CHOICE = $(
2023-04-25 03:05:10 +02:00
whiptail --title "Proxmox VE 7 Post Install" --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 \
2023-04-24 18:06:45 +02:00
"yes" " " \
"no" " " 3>& 2 2>& 1 1>& 3
)
exit_status = $?
if [ $exit_status = = 1 ] ; then
exit_script
fi
case $CHOICE in
yes)
2023-04-25 03:05:10 +02:00
msg_info "Disabling subscription nag"
2023-03-16 01:25:07 +01:00
echo " DPkg::Post-Invoke { \"dpkg -V proxmox-widget-toolkit | grep -q '/proxmoxlib\.js $'; if [ \$? -eq 1 ]; 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
2022-10-30 02:04:45 +01:00
apt --reinstall install proxmox-widget-toolkit & >/dev/null
2023-04-25 03:05:10 +02:00
msg_ok "Disabled subscription nag (Delete browser cache)"
2023-04-24 18:06:45 +02:00
; ;
no)
2023-04-25 03:05:10 +02:00
msg_error "Selected no to Disabling subscription nag"
2023-04-24 18:06:45 +02:00
; ;
esac
2022-06-24 14:46:55 +02:00
2023-04-24 18:06:45 +02:00
CHOICE = $(
whiptail --title "Proxmox VE 7 Post Install" --menu "\nUpdate Proxmox VE 7 now?" 11 58 2 \
"yes" " " \
"no" " " 3>& 2 2>& 1 1>& 3
)
exit_status = $?
if [ $exit_status = = 1 ] ; then
exit_script
fi
case $CHOICE in
yes)
2022-10-30 02:04:45 +01:00
msg_info "Updating Proxmox VE 7 (Patience)"
apt-get update & >/dev/null
apt-get -y dist-upgrade & >/dev/null
2023-04-25 03:05:10 +02:00
msg_ok "Updated Proxmox VE 7 (Reboot recommended)"
2023-04-24 18:06:45 +02:00
; ;
no)
msg_error "Selected no to Updating Proxmox VE 7"
; ;
esac
2022-04-23 17:15:56 +02:00
2023-04-24 18:06:45 +02:00
CHOICE = $(
whiptail --title "Proxmox VE 7 Post Install" --menu "\nReboot Proxmox VE 7 now?" 11 58 2 \
"yes" " " \
"no" " " 3>& 2 2>& 1 1>& 3
)
exit_status = $?
if [ $exit_status = = 1 ] ; then
exit_script
fi
case $CHOICE in
yes)
2022-10-30 02:04:45 +01:00
msg_info "Rebooting Proxmox VE 7"
sleep 2
msg_ok "Completed Post Install Routines"
reboot
2023-04-24 18:06:45 +02:00
; ;
no)
msg_error "Selected no to Rebooting Proxmox VE 7"
msg_ok "Completed Post Install Routines"
; ;
esac
}
header_info
echo -e "\nThis script will Perform Post Install Routines.\n"
while true; do
2023-04-25 03:05:10 +02:00
read -p "Start the Proxmox VE 7 Post Install Script (y/n)?" yn
2023-04-24 18:06:45 +02:00
case $yn in
[ Yy] *) break ; ;
[ Nn] *) exit_script ; ;
*) echo "Please answer yes or no." ; ;
esac
done
if ! command -v pveversion >/dev/null 2>& 1; then
header_info
msg_error "\n No PVE Detected!\n"
exit
fi
if [ $( pveversion | grep "pve-manager/7" | wc -l) -ne 1 ] ; then
header_info
msg_error "This version of Proxmox Virtual Environment is not supported"
echo -e " Requires PVE Version: 7.XX"
echo -e "\nExiting..."
sleep 3
exit
2022-08-24 03:37:12 +02:00
fi
2023-04-24 18:06:45 +02:00
start_routines