mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-04-19 19:08:06 +00:00
Update build.func
This commit is contained in:
parent
d10c404b60
commit
03301f12d2
@ -587,17 +587,47 @@ install_script() {
|
|||||||
NEXTID=$(pvesh get /cluster/nextid)
|
NEXTID=$(pvesh get /cluster/nextid)
|
||||||
timezone=$(cat /etc/timezone)
|
timezone=$(cat /etc/timezone)
|
||||||
header_info
|
header_info
|
||||||
if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "SETTINGS" --yesno "Use Default Settings?" --no-button Advanced 10 58); then
|
while true; do
|
||||||
|
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "SETTINGS" --menu "Choose an option:" \
|
||||||
|
15 60 4 \
|
||||||
|
"1" "Yes" \
|
||||||
|
"2" "Yes (with verbose)" \
|
||||||
|
"3" "Advanced Settings" \
|
||||||
|
"4" "Exit" 3>&1 1>&2 2>&3)
|
||||||
|
|
||||||
|
case $CHOICE in
|
||||||
|
1)
|
||||||
header_info
|
header_info
|
||||||
echo -e "${DEFAULT}${BOLD}${BL}Using Default Settings${CL}"
|
echo -e "${DEFAULT}${BOLD}${BL}Using Default Settings${CL}"
|
||||||
|
VERBOSE="no"
|
||||||
base_settings
|
base_settings
|
||||||
echo_default
|
echo_default
|
||||||
else
|
break
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
header_info
|
||||||
|
echo -e "${DEFAULT}${BOLD}${BL}Using Default Settings (Verbose)${CL}"
|
||||||
|
VERBOSE="yes"
|
||||||
|
base_settings
|
||||||
|
echo_default
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
3)
|
||||||
header_info
|
header_info
|
||||||
echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}"
|
echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}"
|
||||||
advanced_settings
|
advanced_settings
|
||||||
fi
|
break
|
||||||
}
|
;;
|
||||||
|
4)
|
||||||
|
echo -e "${CROSS}${RD} Exiting.${CL}"
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${CROSS}${RD} Invalid option, please try again.${CL}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
check_container_resources() {
|
check_container_resources() {
|
||||||
# Check actual RAM & Cores
|
# Check actual RAM & Cores
|
||||||
|
Loading…
x
Reference in New Issue
Block a user