Remove diagnostics and storage menu options

Eliminates the diagnostics and storage options from the install_script function, consolidating the menu and redirecting the diagnostics option to settings_menu. This simplifies the script's menu structure and removes unused or deprecated functionality.
This commit is contained in:
CanbiZ 2025-09-17 15:49:12 +02:00
parent 8b34ae346b
commit b9b52a6642

View File

@ -1537,12 +1537,6 @@ install_script() {
APPDEFAULTS | appdefaults | 5)
CHOICE="5"
;;
DIAGNOSTICS | diagnostics | 6)
CHOICE="6"
;;
STORAGE | storage | 7)
CHOICE="7"
;;
*)
echo -e "\n${CROSS}${RD}Invalid PRESET value: ${PRESET}${CL}\n"
exit 1
@ -1632,16 +1626,10 @@ install_script() {
fi
;;
6)
diagnostics_menu
settings_menu
exit 0
;;
7)
header_info
echo -e "${DEFAULT}${BOLD}${BL}Manage Storage Settings on node $PVEHOST_NAME${CL}"
ensure_storage_selection_for_vars_file "/usr/local/community-scripts/default.vars"
exit 0
;;
8)
echo -e "\n${CROSS}${RD}Script terminated.${CL}\n"
exit 0
;;