@@ -510,13 +510,13 @@ apt=/etc/apt/sources.list.d
510510echo " deb http://nginx.org/packages/mainline/$VERSION / $codename nginx" \
511511 > $apt /nginx.list
512512wget --quiet http://nginx.org/keys/nginx_signing.key -O /tmp/nginx_signing.key
513- apt-key add /tmp/nginx_signing.key >> $LOG
513+ screen -dm apt-key add /tmp/nginx_signing.key
514514
515515if [ " $multiphp " = ' yes' ] || [ " $phpfpm " = ' yes' ]; then
516516 # Installing sury php repo
517517 echo " deb https://packages.sury.org/php/ $codename main" > $apt /php.list
518- wget https://packages.sury.org/php/apt.gpg -O /tmp/php_signing.key >> $LOG
519- apt-key add /tmp/php_signing.key >> $LOG
518+ wget --quiet https://packages.sury.org/php/apt.gpg -O /tmp/php_signing.key >> $LOG
519+ screen -dm apt-key add /tmp/php_signing.key
520520fi
521521
522522# Installing MariaDB repo
@@ -526,7 +526,7 @@ screen -dm apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C7
526526# Installing hestia repo
527527echo " deb https://$RHOST / $codename main" > $apt /hestia.list
528528wget --quiet https://gpg.hestiacp.com/deb_signing.key -O /tmp/deb_signing.key
529- apt-key add /tmp/deb_signing.key >> $LOG
529+ screen -dm apt-key add /tmp/deb_signing.key
530530
531531
532532# ----------------------------------------------------------#
@@ -1231,9 +1231,9 @@ if [ "$exim" = 'yes' ]; then
12311231 rm -f /etc/alternatives/mta
12321232 ln -s /usr/sbin/exim4 /etc/alternatives/mta
12331233 update-rc.d -f sendmail remove > /dev/null 2>&1
1234- service sendmail stop >> $LOG
1234+ service sendmail stop > /dev/null 2>&1
12351235 update-rc.d -f postfix remove > /dev/null 2>&1
1236- service postfix stop >> $LOG
1236+ service postfix stop > /dev/null 2>&1
12371237
12381238 update-rc.d exim4 defaults
12391239 service exim4 start
0 commit comments