@@ -274,37 +274,43 @@ if [ ! -f /etc/apt/apt.conf.d/80-retries ]; then
274274 echo " APT::Acquire::Retries \" 3\" ;" > /etc/apt/apt.conf.d/80-retries
275275fi
276276
277+ # Welcome message
278+ echo " Welcome to the Hestia Control Panel installer!"
279+ echo
280+ echo " Please wait a moment while we update your system's repositories and"
281+ echo " install any necessary dependencies required to proceed with the installation..."
282+ echo
283+
277284# Update apt repository
278- echo " Please wait a moment while we update your systems APT repositories..."
279285apt-get -qq update
280286
281287# Creating backup directory
282288mkdir -p $hst_backups
283289
284290# Checking ntpdate
285291if [ ! -e ' /usr/sbin/ntpdate' ]; then
286- echo " Install missing ntpdate..."
292+ echo " (*) Installing ntpdate..."
287293 apt-get -y install ntpdate >> $LOG
288294 check_result $? " Can't install ntpdate"
289295fi
290296
291297# Checking wget
292298if [ ! -e ' /usr/bin/wget' ]; then
293- echo " Install missing wget..."
299+ echo " (*) Installing wget..."
294300 apt-get -y install wget >> $LOG
295301 check_result $? " Can't install wget"
296302fi
297303
298304# Check if apt-transport-https is installed
299305if [ ! -e ' /usr/lib/apt/methods/https' ]; then
300- echo " Install missing apt-transport-https..."
306+ echo " (*) Installing apt-transport-https..."
301307 apt-get -y install apt-transport-https >> $LOG
302308 check_result $? " Can't install apt-transport-https"
303309fi
304310
305311# Check if apt-add-repository is installed
306312if [ ! -e ' /usr/bin/apt-add-repository' ]; then
307- echo " Install missing apt-add-repository..."
313+ echo " (*) Installing apt-add-repository..."
308314 apt-get -y install software-properties-common >> $LOG
309315 check_result $? " Can't install software-properties-common"
310316fi
@@ -1112,7 +1118,7 @@ if [ "$nginx" = 'yes' ]; then
11121118 mkdir -p /etc/nginx/conf.d/domains
11131119 mkdir -p /var/log/nginx/domains
11141120 if [ " $apache " = ' no' ] && [ " $multiphp " = ' yes' ]; then
1115- echo " (*) Configuring Multi-PHP..."
1121+ echo " (*) Configuring Multi-PHP for NGINX ..."
11161122 rm -fr $HESTIA /data/templates/web/nginx/*
11171123 for v in " ${multiphp_v[@]} " ; do
11181124 update-rc.d php$v -fpm defaults > /dev/null 2>&1
@@ -1179,7 +1185,7 @@ if [ "$apache" = 'yes' ]; then
11791185 chmod 640 /var/log/apache2/access.log /var/log/apache2/error.log
11801186 chmod 751 /var/log/apache2/domains
11811187 if [ " $multiphp " = ' yes' ] ; then
1182- echo " Configure Apache MultiPHP "
1188+ echo " (*) Configuring Multi-PHP for Apache... "
11831189 a2enmod proxy_fcgi setenvif > /dev/null 2>&1
11841190 for v in " ${multiphp_v[@]} " ; do
11851191 a2enconf php$v -fpm-fpm > /dev/null 2>&1
0 commit comments