We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3c2fba commit 8a4dfa0Copy full SHA for 8a4dfa0
tools/pve/post-pve-install.sh
@@ -179,8 +179,20 @@ EOF
179
msg_info "Disabling high availability"
180
systemctl disable -q --now pve-ha-lrm
181
systemctl disable -q --now pve-ha-crm
182
- systemctl disable -q --now corosync
183
msg_ok "Disabled high availability"
+ CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "COROSYNC" --menu "Disable Corosync for a Proxmox VE Cluster?" 10 58 2 \
184
+ "yes" " " \
185
+ "no" " " 3>&2 2>&1 1>&3)
186
+ case $CHOICE in
187
+ yes)
188
+ msg_info "Disabling Corosync"
189
+ systemctl disable -q --now corosync
190
+ msg_ok "Disabled Corosync"
191
+ ;;
192
+ no)
193
+ msg_error "Selected no to Disabling Corosync"
194
195
+ esac
196
;;
197
no)
198
msg_error "Selected no to Disabling high availability"
0 commit comments