diff --git a/inc/sites.inc b/inc/sites.inc index dd96ad46..f1f68cd7 100755 --- a/inc/sites.inc +++ b/inc/sites.inc @@ -867,9 +867,23 @@ SITEINFO(){ echo -e "\033[12A" ;; *) - echo -e "\n\033[K\n\033[K" - NEWPROXYSITE_CREATE ${site} ${servernames} ${server} ${port} ${scheme} ${wbskt} ${hsts} ${explt} ${lock} ${ssl} - break 3 + echo -en "\033[1A\033[K\r${idsCL[LightCyan]}Configuring changes ... ${idsCL[Default]}" + NEWPROXYSITE_CREATE ${site} ${servernames} ${server} ${port} ${scheme} ${wbskt} ${hsts} ${explt} ${lock} ${ssl} >/dev/null 2>&1 + echo -e "${idsCL[LightGreen]}Done${idsCL[Default]}" + echo + echo -en "${idsCL[LightCyan]}Continue or Exit (C/e): ${idsCL[Default]}" + read -n1 con + case "${con}" in + [Ee]) + echo -e "\n\033[K\n\033[K" + exit 0 + ;; + *) + echo -e "\r\033[K\n\r\033[K\n\r\033[K" + echo -e "\033[17A"; for (( c=1; c<=17; c++ )); do echo -e "\r\033[K"; done; echo -e "\033[17A" + echo -e "\n\n\n\n\n\n\n\n" + ;; + esac ;; esac