From 8925422f72847709e2fbda00d08b711ab69a6604 Mon Sep 17 00:00:00 2001 From: "b.waal" Date: Tue, 17 Sep 2019 21:30:44 +0200 Subject: [PATCH] Updated menu UI All text is now outlined --- installer.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/installer.sh b/installer.sh index dcf487a..c261bcf 100644 --- a/installer.sh +++ b/installer.sh @@ -31,16 +31,16 @@ if (whiptail --title "Ubuntu 18.04 Mail Server" --yesno "Do you want to install clear exit fi -password=$(whiptail --nocancel --passwordbox "Please enter your password (should contain at least 2 digits)" 8 78 --title "Statics dialog" 3>&1 1>&2 2>&3) -domain=$(whiptail --nocancel --inputbox "Enter the Domain without WWW or mail." 8 78 --title "Statics dialog" 3>&1 1>&2 2>&3) -email=$(whiptail --nocancel --inputbox "Enter the E-mail" 8 78 --title "Statics dialog" 3>&1 1>&2 2>&3) +password=$(whiptail --nocancel --passwordbox "Please enter your password (should contain at least 2 digits and 6 characters)" 8 82 --title "Config" 3>&1 1>&2 2>&3) +domain=$(whiptail --nocancel --inputbox "Enter the Domain without www or mail." 8 41 --title "Config" 3>&1 1>&2 2>&3) +email=$(whiptail --nocancel --inputbox "Enter the Administrator E-mail" 8 34 --title "Config" 3>&1 1>&2 2>&3) elif [ $IMODE = l ]; then -echo "Ubuntu 18.04 Mailserver installatie script." -echo "Domein zonder www en mail.:" +echo "Ubuntu 18.04 Mailserver installation script." +echo "Domain without www or mail:" read domain -echo "Algemeen wachtwoord:" +echo "Please enter your password (should contain at least 2 digits and 6 characters:" read password -echo "Administrator email:" +echo "Administrator E-mail:" read email fi