mirror of
https://github.com/tteck/Proxmox.git
synced 2025-02-15 06:09:15 +01:00
parent
e7ec3d0275
commit
8e331fcbff
155 changed files with 12962 additions and 11552 deletions
|
@ -1,13 +1,13 @@
|
|||
#!/usr/bin/env bash -ex
|
||||
set -euo pipefail
|
||||
shopt -s inherit_errexit nullglob
|
||||
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"`
|
||||
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")
|
||||
BFR="\\r\\033[K"
|
||||
HOLD="-"
|
||||
CM="${GN}✓${CL}"
|
||||
|
@ -17,26 +17,26 @@ echo -e "${BL}This script will Perform Post Install Routines.${CL}"
|
|||
while true; do
|
||||
read -p "Start the PVE7 Post Install Script (y/n)?" yn
|
||||
case $yn in
|
||||
[Yy]* ) break;;
|
||||
[Nn]* ) exit;;
|
||||
* ) echo "Please answer yes or no.";;
|
||||
[Yy]*) break ;;
|
||||
[Nn]*) exit ;;
|
||||
*) echo "Please answer yes or no." ;;
|
||||
esac
|
||||
done
|
||||
|
||||
if ! command -v pveversion >/dev/null 2>&1; then
|
||||
echo -e "\n🛑 No PVE Detected, Wrong Script!\n"
|
||||
exit 1
|
||||
echo -e "\n🛑 No PVE Detected, Wrong Script!\n"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ `pveversion | grep "pve-manager/7" | wc -l` -ne 1 ]; then
|
||||
echo -e "\n${RD}⚠ This version of Proxmox Virtual Environment is not supported"
|
||||
echo -e "Requires PVE Version: 7.XX${CL}"
|
||||
echo -e "\nExiting..."
|
||||
sleep 3
|
||||
exit
|
||||
if [ $(pveversion | grep "pve-manager/7" | wc -l) -ne 1 ]; then
|
||||
echo -e "\n${RD}⚠ This version of Proxmox Virtual Environment is not supported"
|
||||
echo -e "Requires PVE Version: 7.XX${CL}"
|
||||
echo -e "\nExiting..."
|
||||
sleep 3
|
||||
exit
|
||||
fi
|
||||
function header_info {
|
||||
echo -e "${RD}
|
||||
echo -e "${RD}
|
||||
____ _ _____________ ____ __ ____ __ ____
|
||||
/ __ \ | / / ____/__ / / __ \____ _____/ /_ / _/___ _____/ /_____ _/ / /
|
||||
/ /_/ / | / / __/ / / / /_/ / __ \/ ___/ __/ / // __ \/ ___/ __/ __ / / /
|
||||
|
@ -58,74 +58,67 @@ function msg_ok() {
|
|||
clear
|
||||
header_info
|
||||
read -r -p "Disable Enterprise Repository? <y/N> " prompt
|
||||
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/pve-enterprise.list
|
||||
msg_ok "Disabled Enterprise Repository"
|
||||
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/pve-enterprise.list
|
||||
msg_ok "Disabled Enterprise Repository"
|
||||
fi
|
||||
|
||||
read -r -p "Add/Correct PVE7 Sources (sources.list)? <y/N> " prompt
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]
|
||||
then
|
||||
msg_info "Adding or Correcting PVE7 Sources"
|
||||
cat <<EOF > /etc/apt/sources.list
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
||||
msg_info "Adding or Correcting PVE7 Sources"
|
||||
cat <<EOF >/etc/apt/sources.list
|
||||
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
|
||||
sleep 2
|
||||
msg_ok "Added or Corrected PVE7 Sources"
|
||||
sleep 2
|
||||
msg_ok "Added or Corrected PVE7 Sources"
|
||||
fi
|
||||
|
||||
read -r -p "Enable No-Subscription Repository? <y/N> " prompt
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]
|
||||
then
|
||||
msg_info "Enabling No-Subscription Repository"
|
||||
cat <<EOF >> /etc/apt/sources.list
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
||||
msg_info "Enabling No-Subscription Repository"
|
||||
cat <<EOF >>/etc/apt/sources.list
|
||||
deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription
|
||||
EOF
|
||||
sleep 2
|
||||
msg_ok "Enabled No-Subscription Repository"
|
||||
sleep 2
|
||||
msg_ok "Enabled No-Subscription Repository"
|
||||
fi
|
||||
|
||||
read -r -p "Add (Disabled) Beta/Test Repository? <y/N> " prompt
|
||||
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
|
||||
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
|
||||
# deb http://download.proxmox.com/debian/pve bullseye pvetest
|
||||
EOF
|
||||
sleep 2
|
||||
msg_ok "Added Beta/Test Repository"
|
||||
sleep 2
|
||||
msg_ok "Added Beta/Test Repository"
|
||||
fi
|
||||
|
||||
read -r -p "Disable Subscription Nag? <y/N> " prompt
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]
|
||||
then
|
||||
msg_info "Disabling Subscription Nag"
|
||||
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
|
||||
apt --reinstall install proxmox-widget-toolkit &>/dev/null
|
||||
msg_ok "Disabled Subscription Nag (Delete browser cache)"
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
||||
msg_info "Disabling Subscription Nag"
|
||||
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
|
||||
apt --reinstall install proxmox-widget-toolkit &>/dev/null
|
||||
msg_ok "Disabled Subscription Nag (Delete browser cache)"
|
||||
fi
|
||||
|
||||
read -r -p "Update Proxmox VE 7 now? <y/N> " prompt
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]
|
||||
then
|
||||
msg_info "Updating Proxmox VE 7 (Patience)"
|
||||
apt-get update &>/dev/null
|
||||
apt-get -y dist-upgrade &>/dev/null
|
||||
msg_ok "Updated Proxmox VE 7 (⚠ Reboot Recommended)"
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
||||
msg_info "Updating Proxmox VE 7 (Patience)"
|
||||
apt-get update &>/dev/null
|
||||
apt-get -y dist-upgrade &>/dev/null
|
||||
msg_ok "Updated Proxmox VE 7 (⚠ Reboot Recommended)"
|
||||
fi
|
||||
|
||||
read -r -p "Reboot Proxmox VE 7 now? <y/N> " prompt
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]
|
||||
then
|
||||
msg_info "Rebooting Proxmox VE 7"
|
||||
sleep 2
|
||||
msg_ok "Completed Post Install Routines"
|
||||
reboot
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
||||
msg_info "Rebooting Proxmox VE 7"
|
||||
sleep 2
|
||||
msg_ok "Completed Post Install Routines"
|
||||
reboot
|
||||
fi
|
||||
|
||||
sleep 2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue