diff --git a/misc/build.func b/misc/build.func index 7b5be747..51b6c1f9 100644 --- a/misc/build.func +++ b/misc/build.func @@ -206,6 +206,7 @@ TEMPLATE_STORAGE=$tmpl CONTAINER_STORAGE=$cont EOF + msg_ok "Default Storage set: Template=${BL}$tmpl${CL} ${GN}|${CL} Container=${BL}$cont${CL}" whiptail --backtitle "[dev] Proxmox VE Helper Scripts" \ --msgbox "Default Storage set:\n\nTemplate: $tmpl\nContainer: $cont" 10 58 } diff --git a/misc/create_lxc.sh b/misc/create_lxc.sh index 7349d204..81520d0a 100644 --- a/misc/create_lxc.sh +++ b/misc/create_lxc.sh @@ -162,10 +162,10 @@ DEFAULT_FILE="/usr/local/community-scripts/default_storage" if [[ -f "$DEFAULT_FILE" ]]; then source "$DEFAULT_FILE" if [[ -n "$TEMPLATE_STORAGE" && -n "$CONTAINER_STORAGE" ]]; then - msg_info "Using default storage configuration" + msg_info "Using default storage configuration from: $DEFAULT_FILE" msg_ok "Template Storage: ${BL}$TEMPLATE_STORAGE${CL} ${GN}|${CL} Container Storage: ${BL}$CONTAINER_STORAGE${CL}" else - msg_warn "Default storage file found but incomplete – falling back to manual selection" + msg_warn "Default storage file exists but is incomplete – falling back to manual selection" TEMPLATE_STORAGE=$(select_storage template) msg_ok "Using ${BL}$TEMPLATE_STORAGE${CL} ${GN}for Template Storage." CONTAINER_STORAGE=$(select_storage container)