From e2b56349d94bd3d5866919598a753d3768c1e781 Mon Sep 17 00:00:00 2001 From: myvesta <38690722+myvesta@users.noreply.github.com> Date: Sun, 26 Jul 2020 02:46:03 +0200 Subject: [PATCH] Update vst-install-debian.sh --- install/vst-install-debian.sh | 37 +++++++++++++++++------------------ 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/install/vst-install-debian.sh b/install/vst-install-debian.sh index d05f8430..93b8438d 100755 --- a/install/vst-install-debian.sh +++ b/install/vst-install-debian.sh @@ -351,59 +351,58 @@ echo 'Following software will be installed on your system:' # Web stack if [ "$nginx" = 'yes' ]; then - echo ' - Nginx Web Server' + echo ' - nginx Web server' fi if [ "$apache" = 'yes' ] && [ "$nginx" = 'no' ] ; then - echo ' - Apache Web Server' + echo ' - Apache Web server' fi if [ "$apache" = 'yes' ] && [ "$nginx" = 'yes' ] ; then - echo ' - Apache Web Server (in very fast mpm_event mode)' + echo ' - Apache Web server (in very fast mpm_event mode)' echo ' - PHP-FPM service for PHP' fi if [ "$phpfpm" = 'yes' ]; then - echo ' - PHP-FPM Application Server' + echo ' - PHP-FPM service' fi # DNS stack if [ "$named" = 'yes' ]; then - echo ' - Bind DNS Server' + echo ' - Bind9 DNS service' fi # Mail Stack if [ "$exim" = 'yes' ]; then - echo -n ' - Exim mail server' + echo -n ' - Exim4 mail server' if [ "$clamd" = 'yes' ] || [ "$spamd" = 'yes' ] ; then - echo -n ' + ' if [ "$clamd" = 'yes' ]; then - echo -n 'Antivirus ' + echo -n '+ ClamAV antivirus ' fi if [ "$spamd" = 'yes' ]; then - echo -n 'Antispam' + echo -n '+ SpamAssassin antispam service' fi fi echo if [ "$dovecot" = 'yes' ]; then - echo ' - Dovecot POP3/IMAP Server' + echo ' - Dovecot POP3/IMAP service' fi fi # DB stack if [ "$mysql" = 'yes' ]; then - echo ' - MySQL Database Server' + echo ' - MySQL Database server' fi if [ "$postgresql" = 'yes' ]; then - echo ' - PostgreSQL Database Server' -fi -if [ "$mongodb" = 'yes' ]; then - echo ' - MongoDB Database Server' + echo ' - PostgreSQL Database server' fi +# if [ "$mongodb" = 'yes' ]; then +# echo ' - MongoDB Database Server' +# fi # FTP stack if [ "$vsftpd" = 'yes' ]; then - echo ' - Vsftpd FTP Server' + echo ' - Vsftpd FTP service' fi if [ "$proftpd" = 'yes' ]; then - echo ' - ProFTPD FTP Server' + echo ' - ProFTPD FTP service' fi # Softaculous @@ -413,10 +412,10 @@ fi # Firewall stack if [ "$iptables" = 'yes' ]; then - echo -n ' - Iptables Firewall' + echo -n ' - iptables firewall' fi if [ "$iptables" = 'yes' ] && [ "$fail2ban" = 'yes' ]; then - echo -n ' + Fail2Ban' + echo -n ' + Fail2Ban service' fi echo -e "\n\n"