Proxmox/misc/post-pbs-install.sh

120 lines
4.1 KiB
Bash
Raw Normal View History

2022-09-21 18:25:28 +02:00
#!/usr/bin/env bash -ex
set -euo pipefail
shopt -s inherit_errexit nullglob
2022-10-30 02:04:45 +01:00
YW=$(echo "\033[33m")
BL=$(echo "\033[36m")
RD=$(echo "\033[01;31m")
BGN=$(echo "\033[4;92m")
GN=$(echo "\033[1;92m")
DGN=$(echo "\033[32m")
CL=$(echo "\033[m")
2022-09-21 18:25:28 +02:00
BFR="\\r\\033[K"
HOLD="-"
CM="${GN}${CL}"
CROSS="${RD}${CL}"
clear
echo -e "${BL}This script will Perform Post Install Routines.${CL}"
while true; do
read -p "Start the PBS Post Install Script (y/n)?" yn
case $yn in
2022-10-30 02:04:45 +01:00
[Yy]*) break ;;
[Nn]*) exit ;;
*) echo "Please answer yes or no." ;;
2022-09-21 18:25:28 +02:00
esac
done
if command -v pveversion >/dev/null 2>&1; then
2022-10-30 02:04:45 +01:00
echo -e "\n🛑 PVE Detected, Wrong Script!\n"
exit 1
2022-09-21 18:25:28 +02:00
fi
function header_info {
2022-10-30 02:04:45 +01:00
cat <<"EOF"
2022-09-21 18:25:28 +02:00
____ ____ _____ ____ __ ____ __ ____
/ __ \/ __ ) ___/ / __ \____ _____/ /_ / _/___ _____/ /_____ _/ / /
/ /_/ / __ \__ \ / /_/ / __ \/ ___/ __/ / // __ \/ ___/ __/ __ `/ / /
/ ____/ /_/ /__/ / / ____/ /_/ (__ ) /_ _/ // / / (__ ) /_/ /_/ / / /
/_/ /_____/____/ /_/ \____/____/\__/ /___/_/ /_/____/\__/\__,_/_/_/
EOF
}
function msg_info() {
local msg="$1"
echo -ne " ${HOLD} ${YW}${msg}..."
}
function msg_ok() {
local msg="$1"
echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
}
clear
header_info
read -r -p "Disable Enterprise Repository? <y/N> " prompt
2022-10-30 02:04:45 +01:00
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
msg_info "Disabling Enterprise Repository"
sleep 2
sed -i "s/^deb/#deb/g" /etc/apt/sources.list.d/pbs-enterprise.list
msg_ok "Disabled Enterprise Repository"
2022-09-21 18:25:28 +02:00
fi
read -r -p "Add/Correct PBS Sources (sources.list)? <y/N> " prompt
2022-10-30 02:04:45 +01:00
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
msg_info "Adding or Correcting PBS Sources"
cat <<EOF >/etc/apt/sources.list
2022-09-21 18:25:28 +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
2022-10-30 02:04:45 +01:00
sleep 2
msg_ok "Added or Corrected PBS Sources"
2022-09-21 18:25:28 +02:00
fi
read -r -p "Enable No-Subscription Repository? <y/N> " prompt
2022-10-30 02:04:45 +01:00
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
msg_info "Enabling No-Subscription Repository"
cat <<EOF >>/etc/apt/sources.list
2022-09-21 18:25:28 +02:00
deb http://download.proxmox.com/debian/pbs bullseye pbs-no-subscription
EOF
2022-10-30 02:04:45 +01:00
sleep 2
msg_ok "Enabled No-Subscription Repository"
2022-09-21 18:25:28 +02:00
fi
read -r -p "Add (Disabled) Beta/Test Repository? <y/N> " prompt
2022-10-30 02:04:45 +01:00
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
msg_info "Adding Beta/Test Repository and set disabled"
cat <<EOF >>/etc/apt/sources.list
2022-09-21 18:25:28 +02:00
# deb http://download.proxmox.com/debian/pbs bullseye pbstest
EOF
2022-10-30 02:04:45 +01:00
sleep 2
msg_ok "Added Beta/Test Repository"
2022-09-21 18:25:28 +02:00
fi
read -r -p "Disable Subscription Nag? <y/N> " prompt
2022-10-30 02:04:45 +01:00
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
msg_info "Disabling Subscription Nag"
2023-01-05 00:21:16 +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
msg_ok "Disabled Subscription Nag"
2022-09-21 18:25:28 +02:00
fi
read -r -p "Update Proxmox Backup Server now? <y/N> " prompt
2022-10-30 02:04:45 +01:00
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
msg_info "Updating Proxmox Backup Server (Patience)"
apt-get update &>/dev/null
apt-get -y dist-upgrade &>/dev/null
msg_ok "Updated Proxmox Backup Server (⚠ Reboot Recommended)"
2022-09-21 18:25:28 +02:00
fi
read -r -p "Reboot Proxmox Backup Server now? <y/N> " prompt
2022-10-30 02:04:45 +01:00
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
msg_info "Rebooting Proxmox Backup Server"
sleep 2
msg_ok "Completed Post Install Routines"
reboot
2022-09-21 18:25:28 +02:00
fi
sleep 2
msg_ok "Completed Post Install Routines"