mirror of
https://github.com/tteck/Proxmox.git
synced 2024-11-22 08:13:11 +01:00
Update post-pve-install.sh
tweak
This commit is contained in:
parent
1f9b959a47
commit
259ba993a2
@ -66,15 +66,15 @@ function msg_ok() {
|
|||||||
clear
|
clear
|
||||||
header_info
|
header_info
|
||||||
read -r -p "Disable Enterprise Repository? <y/N> " prompt
|
read -r -p "Disable Enterprise Repository? <y/N> " prompt
|
||||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
|
||||||
msg_info "Disabling Enterprise Repository"
|
msg_info "Disabling Enterprise Repository"
|
||||||
sleep 2
|
sleep 2
|
||||||
sed -i "s/^deb/#deb/g" /etc/apt/sources.list.d/pve-enterprise.list
|
sed -i 's/^deb/#deb/g' /etc/apt/sources.list.d/pve-enterprise.list
|
||||||
msg_ok "Disabled Enterprise Repository"
|
msg_ok "Disabled Enterprise Repository"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
read -r -p "Add/Correct PVE7 Sources (sources.list)? <y/N> " prompt
|
read -r -p "Add/Correct PVE7 Sources (sources.list)? <y/N> " prompt
|
||||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
|
||||||
msg_info "Adding or Correcting PVE7 Sources"
|
msg_info "Adding or Correcting PVE7 Sources"
|
||||||
cat <<EOF >/etc/apt/sources.list
|
cat <<EOF >/etc/apt/sources.list
|
||||||
deb http://ftp.debian.org/debian bullseye main contrib
|
deb http://ftp.debian.org/debian bullseye main contrib
|
||||||
@ -85,8 +85,9 @@ EOF
|
|||||||
msg_ok "Added or Corrected PVE7 Sources"
|
msg_ok "Added or Corrected PVE7 Sources"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
read -r -p "Enable No-Subscription Repository? <y/N> " prompt
|
read -r -p "Enable No-Subscription Repository? <y/N> " prompt
|
||||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
|
||||||
msg_info "Enabling No-Subscription Repository"
|
msg_info "Enabling No-Subscription Repository"
|
||||||
cat <<EOF >>/etc/apt/sources.list
|
cat <<EOF >>/etc/apt/sources.list
|
||||||
deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription
|
deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription
|
||||||
@ -96,7 +97,7 @@ EOF
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
read -r -p "Add (Disabled) Beta/Test Repository? <y/N> " prompt
|
read -r -p "Add (Disabled) Beta/Test Repository? <y/N> " prompt
|
||||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
|
||||||
msg_info "Adding Beta/Test Repository and set disabled"
|
msg_info "Adding Beta/Test Repository and set disabled"
|
||||||
cat <<EOF >>/etc/apt/sources.list
|
cat <<EOF >>/etc/apt/sources.list
|
||||||
# deb http://download.proxmox.com/debian/pve bullseye pvetest
|
# deb http://download.proxmox.com/debian/pve bullseye pvetest
|
||||||
@ -106,7 +107,7 @@ EOF
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
read -r -p "Disable Subscription Nag? <y/N> " prompt
|
read -r -p "Disable Subscription Nag? <y/N> " prompt
|
||||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
|
||||||
msg_info "Disabling Subscription Nag"
|
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
|
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
|
apt --reinstall install proxmox-widget-toolkit &>/dev/null
|
||||||
@ -114,7 +115,7 @@ if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
read -r -p "Update Proxmox VE 7 now? <y/N> " prompt
|
read -r -p "Update Proxmox VE 7 now? <y/N> " prompt
|
||||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
|
||||||
msg_info "Updating Proxmox VE 7 (Patience)"
|
msg_info "Updating Proxmox VE 7 (Patience)"
|
||||||
apt-get update &>/dev/null
|
apt-get update &>/dev/null
|
||||||
apt-get -y dist-upgrade &>/dev/null
|
apt-get -y dist-upgrade &>/dev/null
|
||||||
@ -122,7 +123,7 @@ if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
read -r -p "Reboot Proxmox VE 7 now? <y/N> " prompt
|
read -r -p "Reboot Proxmox VE 7 now? <y/N> " prompt
|
||||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]; then
|
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
|
||||||
msg_info "Rebooting Proxmox VE 7"
|
msg_info "Rebooting Proxmox VE 7"
|
||||||
sleep 2
|
sleep 2
|
||||||
msg_ok "Completed Post Install Routines"
|
msg_ok "Completed Post Install Routines"
|
||||||
|
Loading…
Reference in New Issue
Block a user