From 50621a5dfc3da9095b677068b3cc1e0dd63ad8b1 Mon Sep 17 00:00:00 2001
From: tteckster <tteckster@gmail.com>
Date: Fri, 9 Jun 2023 21:17:17 -0400
Subject: [PATCH] Update pve8-post-install.sh

add Ceph Package Repositories
---
 misc/pve8-post-install.sh | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/misc/pve8-post-install.sh b/misc/pve8-post-install.sh
index d505d980..b542867d 100644
--- a/misc/pve8-post-install.sh
+++ b/misc/pve8-post-install.sh
@@ -95,6 +95,23 @@ EOF
     ;;
   esac
 
+  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)
+  case $CHOICE in
+  yes)
+    msg_info "Enabling 'ceph package repositories'"
+    cat <<EOF >/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
+EOF
+    msg_ok "Enabled 'ceph package repositories'"
+    ;;
+  no)
+    msg_error "Selected no to Enabling 'ceph package repositories'"
+    ;;
+  esac
+
   CHOICE=$(whiptail --title "PVETEST" --menu "The 'pvetest' repository can give advanced users access to new features and updates before they are officially released.\n \nAdd (Disabled) 'pvetest' repository?" 14 58 2 \
     "yes" " " \
     "no" " " 3>&2 2>&1 1>&3)