From 2fbac0383af2d249d546e49aeef091adf2a5edf2 Mon Sep 17 00:00:00 2001 From: tteckster Date: Sun, 2 Jul 2023 03:51:07 -0400 Subject: [PATCH] Update post-pve-install.sh tweak --- misc/post-pve-install.sh | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/misc/post-pve-install.sh b/misc/post-pve-install.sh index b3fb1bf6..7b1fcf7c 100644 --- a/misc/post-pve-install.sh +++ b/misc/post-pve-install.sh @@ -155,24 +155,6 @@ EOF esac fi - if systemctl is-active --quiet pve-ha-lrm; then - CHOICE=$(whiptail --title "HIGH AVAILABILITY" --menu "If you plan to utilize a single node instead of a clustered environment, you can disable unnecessary high availability (HA) services, thus reclaiming system resources.\n\nIf HA becomes necessary at a later stage, the services can be re-enabled.\n\nDisable high availability?" 18 58 2 \ - "yes" " " \ - "no" " " 3>&2 2>&1 1>&3) - case $CHOICE in - yes) - msg_info "Disabling high availability" - systemctl disable -q --now pve-ha-lrm - systemctl disable -q --now pve-ha-crm - systemctl disable -q --now corosync - msg_ok "Disabled high availability" - ;; - no) - msg_error "Selected no to Disabling high availability" - ;; - esac - fi - if ! systemctl is-active --quiet pve-ha-lrm; then CHOICE=$(whiptail --title "HIGH AVAILABILITY" --menu "Enable high availability?" 10 58 2 \ "yes" " " \ @@ -191,6 +173,24 @@ EOF esac fi + if systemctl is-active --quiet pve-ha-lrm; then + CHOICE=$(whiptail --title "HIGH AVAILABILITY" --menu "If you plan to utilize a single node instead of a clustered environment, you can disable unnecessary high availability (HA) services, thus reclaiming system resources.\n\nIf HA becomes necessary at a later stage, the services can be re-enabled.\n\nDisable high availability?" 18 58 2 \ + "yes" " " \ + "no" " " 3>&2 2>&1 1>&3) + case $CHOICE in + yes) + msg_info "Disabling high availability" + systemctl disable -q --now pve-ha-lrm + systemctl disable -q --now pve-ha-crm + systemctl disable -q --now corosync + msg_ok "Disabled high availability" + ;; + no) + msg_error "Selected no to Disabling high availability" + ;; + esac + fi + CHOICE=$(whiptail --title "UPDATE" --menu "\nUpdate Proxmox VE now?" 11 58 2 \ "yes" " " \ "no" " " 3>&2 2>&1 1>&3)