From 1a0370bfee343ceb8f1118fd8d740a34a6987592 Mon Sep 17 00:00:00 2001 From: qtwrk Date: Fri, 10 Jan 2020 14:36:23 +0100 Subject: [PATCH] change minimal install message 2 --- cyberpanel.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cyberpanel.sh b/cyberpanel.sh index 6051457f8..04e058d90 100644 --- a/cyberpanel.sh +++ b/cyberpanel.sh @@ -816,13 +816,13 @@ esac echo -e "\nInstall Full service for CyberPanel? This will include PowerDNS, Postfix and Pure-FTPd." echo -e "" -printf "%s" "Minimal installation [y/N]: " +printf "%s" "Full installation [Y/n]: " read TMP_YN -if [ `expr "x$TMP_YN" : 'x[Yy]'` -gt 1 ]; then - echo -e "\nMinimal installation selected..." - POSTFIX_VARIABLE="OFF" - POWERDNS_VARIABLE="OFF" - PUREFTPD_VARIABLE="OFF" +if [[ `expr "x$TMP_YN" : 'x[Yy]'` -gt 1 ]] || [[ $TMP_YN == "" ]] ; then + echo -e "\nFull installation selected..." + POSTFIX_VARIABLE="ON" + POWERDNS_VARIABLE="ON" + PUREFTPD_VARIABLE="ON" else echo -e "" printf "%s" "Install Postfix? [Y/n]: "