Skip to content

Commit c1fcee6

Browse files
author
Kristan Kenney
committed
Fix service restart calls in upgrade.sh
1 parent be86d62 commit c1fcee6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

func/upgrade.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -804,20 +804,20 @@ upgrade_restart_services() {
804804
if [ "$DEBUG_MODE" = "true" ]; then
805805
echo " - $FIREWALL_EXTENSION"
806806
fi
807-
$BIN/v-restart-service $FIREWALL_EXTENSION yes
807+
$BIN/v-restart-service $FIREWALL_EXTENSION
808808
fi
809809
# Restart SSH daemon service
810810
if [ "$DEBUG_MODE" = "true" ]; then
811811
echo " - sshd"
812812
fi
813-
$BIN/v-restart-service ssh $restart
813+
$BIN/v-restart-service ssh
814814
fi
815815

816816
# Always restart the Hestia Control Panel service
817817
if [ "$DEBUG_MODE" = "true" ]; then
818818
echo " - hestia"
819819
fi
820-
$BIN/v-restart-service hestia $restart
820+
$BIN/v-restart-service hestia
821821
}
822822

823823
upgrade_perform_cleanup() {

0 commit comments

Comments
 (0)