Browse Source

Fix missing ;then.

Raphael Schneeberger 7 years ago
parent
commit
f6b56cfd6e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/deb/hestia/postinst

+ 1 - 1
src/deb/hestia/postinst

@@ -64,7 +64,7 @@ if [ -f /usr/local/hestia/data/firewall/ports.conf ]; then
 fi
 
 # Set backend port
-if [ ! -z "$BACKEND_PORT" ]
+if [ ! -z "$BACKEND_PORT" ]; then
     /usr/local/hestia/bin/v-change-sys-port $BACKEND_PORT
 fi