From 63f90bd080b938c67dace1e420566c71a4694c63 Mon Sep 17 00:00:00 2001 From: tteckster Date: Sun, 11 Jun 2023 23:19:19 -0400 Subject: [PATCH] Update post-pve-install.sh correct code --- misc/post-pve-install.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/misc/post-pve-install.sh b/misc/post-pve-install.sh index 8e5aa0df..fcf634df 100644 --- a/misc/post-pve-install.sh +++ b/misc/post-pve-install.sh @@ -58,9 +58,9 @@ start_routines() { yes) msg_info "Correcting Proxmox VE Sources" cat </etc/apt/sources.list -deb http://ftp.debian.org/debian $(VERSION) main contrib -deb http://ftp.debian.org/debian $(VERSION)-updates main contrib -deb http://security.debian.org/debian-security $(VERSION)-security main contrib +deb http://ftp.debian.org/debian ${VERSION} main contrib +deb http://ftp.debian.org/debian ${VERSION}-updates main contrib +deb http://security.debian.org/debian-security ${VERSION}-security main contrib EOF msg_ok "Corrected Proxmox VE Sources" ;; @@ -76,7 +76,7 @@ EOF yes) msg_info "Disabling 'pve-enterprise' repository" cat </etc/apt/sources.list.d/pve-enterprise.list -# deb https://enterprise.proxmox.com/debian/pve $(VERSION) pve-enterprise +# deb https://enterprise.proxmox.com/debian/pve ${VERSION} pve-enterprise EOF msg_ok "Disabled 'pve-enterprise' repository" ;; @@ -92,7 +92,7 @@ EOF yes) msg_info "Enabling 'pve-no-subscription' repository" cat </etc/apt/sources.list.d/pve-install-repo.list -deb http://download.proxmox.com/debian/pve $(VERSION) pve-no-subscription +deb http://download.proxmox.com/debian/pve ${VERSION} pve-no-subscription EOF msg_ok "Enabled 'pve-no-subscription' repository" ;; @@ -101,7 +101,7 @@ EOF ;; esac - if [[ "$(VERSION)" == "bookworm" ]]; then + if [[ "${VERSION}" == "bookworm" ]]; then CHOICE=$(whiptail --title "CEPH PACKAGE REPOSITORIES" --menu "The 'Ceph Package Repositories' provides access to both the 'no-subscription' and 'enterprise' repositories.\n \nEnable 'ceph package repositories?" 14 58 2 \ "yes" " " \ "no" " " 3>&2 2>&1 1>&3) @@ -127,7 +127,7 @@ EOF yes) msg_info "Adding 'pvetest' repository and set disabled" cat </etc/apt/sources.list.d/pvetest-for-beta.list -# deb http://download.proxmox.com/debian/pve $(VERSION) pvetest +# deb http://download.proxmox.com/debian/pve ${VERSION} pvetest EOF msg_ok "Added 'pvetest' repository" ;;