From fb27c9bd342daaf88f6ec7efd2653203481f00ed Mon Sep 17 00:00:00 2001 From: tteckster Date: Thu, 14 Apr 2022 13:50:14 -0400 Subject: [PATCH] Update debian-v3.sh --- ct/debian-v3.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ct/debian-v3.sh b/ct/debian-v3.sh index 560a98e1..616de1fc 100644 --- a/ct/debian-v3.sh +++ b/ct/debian-v3.sh @@ -116,8 +116,12 @@ header_info echo -e "${GN}Using ID ${BGN}$CT_ID${CL}" echo -e "${YW}Enter CT Name (no spaces), or Press [ENTER] for Default: $APP " read CT_NAME - if [ -z $CT_NAME ]; then CT_NAME=$APP; HN=$(echo ${CT_NAME,,} | tr -d ' '); fi - if [ $CT_NAME ]; then HN=$(echo ${CT_NAME,,} | tr -d ' '); fi + if [ -z $CT_NAME ]; then + CT_NAME=$NSAPP; + HN=$NSAPP + else + HN=$(echo ${CT_NAME,,} | tr -d ' ') + fi echo -en "${GN}Set CT Name To ${BL}$CT_NAME${CL}" echo -e " ${CM}${CL} \r" sleep 1 @@ -131,7 +135,7 @@ header_info echo -e "${YW}Enter a Disk Size, or Press [ENTER] for Default: 2Gb " read SIZEDISK if [ -z $SIZEDISK ]; then SIZEDISK="2"; fi; - if ! [[ $SIZEDISK =~ $INTEGER ]] ; then echo "ERROR! SIZEDISK MUST HAVE INTEGER NUMBER!"; exit; fi; + if ! [[ $SIZEDISK =~ $INTEGER ]] ; then echo "ERROR! DISK SIZE MUST HAVE INTEGER NUMBER!"; exit; fi; echo -en "${GN}Set Disk Size To ${BL}$SIZEDISK${CL}" echo -e " ${CM}${CL} \r" sleep 1