From 966ab2d26e880b0bfbc554c67f6238344baf56a6 Mon Sep 17 00:00:00 2001 From: tteckster Date: Tue, 13 Feb 2024 05:35:43 -0500 Subject: [PATCH] Update post-pve-install.sh - add both Quincy and Reef Ceph repositories, both initially disabled - fixes https://github.com/tteck/Proxmox/issues/2484 --- misc/post-pve-install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/misc/post-pve-install.sh b/misc/post-pve-install.sh index 18b86ca2..9b7380b3 100644 --- a/misc/post-pve-install.sh +++ b/misc/post-pve-install.sh @@ -99,7 +99,7 @@ EOF esac if [[ "${VERSION}" == "bookworm" ]]; then - CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "CEPH PACKAGE REPOSITORIES" --menu "The 'Ceph Package Repositories' provides access to both the 'no-subscription'(enabled) and 'enterprise'(disabled) repositories.\n \nCorrect 'ceph package sources?" 14 58 2 \ + CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "CEPH PACKAGE REPOSITORIES" --menu "The 'Ceph Package Repositories' provides access to both the 'no-subscription' and 'enterprise' repositories.\n \nCorrect 'ceph package sources?" 14 58 2 \ "yes" " " \ "no" " " 3>&2 2>&1 1>&3) case $CHOICE in @@ -107,7 +107,9 @@ EOF msg_info "Enabling 'ceph package repositories'" cat </etc/apt/sources.list.d/ceph.list # deb http://download.proxmox.com/debian/ceph-quincy bookworm enterprise -deb http://download.proxmox.com/debian/ceph-quincy bookworm no-subscription +# deb http://download.proxmox.com/debian/ceph-quincy bookworm no-subscription +# deb http://download.proxmox.com/debian/ceph-reef bookworm enterprise +# deb http://download.proxmox.com/debian/ceph-reef bookworm no-subscription EOF msg_ok "Enabled 'ceph package repositories'" ;;