Update vst-install-debian.sh

This commit is contained in:
myvesta 2020-07-26 02:46:03 +02:00 committed by GitHub
commit e2b56349d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -351,59 +351,58 @@ echo 'Following software will be installed on your system:'
# Web stack # Web stack
if [ "$nginx" = 'yes' ]; then if [ "$nginx" = 'yes' ]; then
echo ' - Nginx Web Server' echo ' - nginx Web server'
fi fi
if [ "$apache" = 'yes' ] && [ "$nginx" = 'no' ] ; then if [ "$apache" = 'yes' ] && [ "$nginx" = 'no' ] ; then
echo ' - Apache Web Server' echo ' - Apache Web server'
fi fi
if [ "$apache" = 'yes' ] && [ "$nginx" = 'yes' ] ; then 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' echo ' - PHP-FPM service for PHP'
fi fi
if [ "$phpfpm" = 'yes' ]; then if [ "$phpfpm" = 'yes' ]; then
echo ' - PHP-FPM Application Server' echo ' - PHP-FPM service'
fi fi
# DNS stack # DNS stack
if [ "$named" = 'yes' ]; then if [ "$named" = 'yes' ]; then
echo ' - Bind DNS Server' echo ' - Bind9 DNS service'
fi fi
# Mail Stack # Mail Stack
if [ "$exim" = 'yes' ]; then if [ "$exim" = 'yes' ]; then
echo -n ' - Exim mail server' echo -n ' - Exim4 mail server'
if [ "$clamd" = 'yes' ] || [ "$spamd" = 'yes' ] ; then if [ "$clamd" = 'yes' ] || [ "$spamd" = 'yes' ] ; then
echo -n ' + '
if [ "$clamd" = 'yes' ]; then if [ "$clamd" = 'yes' ]; then
echo -n 'Antivirus ' echo -n '+ ClamAV antivirus '
fi fi
if [ "$spamd" = 'yes' ]; then if [ "$spamd" = 'yes' ]; then
echo -n 'Antispam' echo -n '+ SpamAssassin antispam service'
fi fi
fi fi
echo echo
if [ "$dovecot" = 'yes' ]; then if [ "$dovecot" = 'yes' ]; then
echo ' - Dovecot POP3/IMAP Server' echo ' - Dovecot POP3/IMAP service'
fi fi
fi fi
# DB stack # DB stack
if [ "$mysql" = 'yes' ]; then if [ "$mysql" = 'yes' ]; then
echo ' - MySQL Database Server' echo ' - MySQL Database server'
fi fi
if [ "$postgresql" = 'yes' ]; then if [ "$postgresql" = 'yes' ]; then
echo ' - PostgreSQL Database Server' echo ' - PostgreSQL Database server'
fi
if [ "$mongodb" = 'yes' ]; then
echo ' - MongoDB Database Server'
fi fi
# if [ "$mongodb" = 'yes' ]; then
# echo ' - MongoDB Database Server'
# fi
# FTP stack # FTP stack
if [ "$vsftpd" = 'yes' ]; then if [ "$vsftpd" = 'yes' ]; then
echo ' - Vsftpd FTP Server' echo ' - Vsftpd FTP service'
fi fi
if [ "$proftpd" = 'yes' ]; then if [ "$proftpd" = 'yes' ]; then
echo ' - ProFTPD FTP Server' echo ' - ProFTPD FTP service'
fi fi
# Softaculous # Softaculous
@ -413,10 +412,10 @@ fi
# Firewall stack # Firewall stack
if [ "$iptables" = 'yes' ]; then if [ "$iptables" = 'yes' ]; then
echo -n ' - Iptables Firewall' echo -n ' - iptables firewall'
fi fi
if [ "$iptables" = 'yes' ] && [ "$fail2ban" = 'yes' ]; then if [ "$iptables" = 'yes' ] && [ "$fail2ban" = 'yes' ]; then
echo -n ' + Fail2Ban' echo -n ' + Fail2Ban service'
fi fi
echo -e "\n\n" echo -e "\n\n"