Browse Source

Supress output for v-change-sys-port during installation.

Raphael Schneeberger 5 years ago
parent
commit
64a1ff598d
2 changed files with 2 additions and 2 deletions
  1. 1 1
      install/hst-install-debian.sh
  2. 1 1
      install/hst-install-ubuntu.sh

+ 1 - 1
install/hst-install-debian.sh

@@ -1823,7 +1823,7 @@ if [ "$quota" = 'yes' ]; then
 fi
 
 # Set backend port
-$HESTIA/bin/v-change-sys-port $port
+$HESTIA/bin/v-change-sys-port $port > /dev/null 2>&1
 
 # Set default theme
 $HESTIA/bin/v-change-sys-theme 'default'

+ 1 - 1
install/hst-install-ubuntu.sh

@@ -1781,7 +1781,7 @@ if [ "$quota" = 'yes' ]; then
 fi
 
 # Set backend port
-$HESTIA/bin/v-change-sys-port $port
+$HESTIA/bin/v-change-sys-port $port > /dev/null 2>&1
 
 # Set default theme
 $HESTIA/bin/v-change-sys-theme 'default'