Attempt to fix validation

This commit is contained in:
fwiegerinck 2025-01-20 00:03:23 +01:00
parent 98dcab2d8d
commit 9fa583de06

View File

@ -75,7 +75,7 @@ while ! nc -z localhost 443; do
sleep 0.5
((timeout_counter++))
if [[ $timeout_counter -gt 30 ]]; then
if (( timeout_counter > 30 )); then
msg_error "Failed to start Step-CA"
exit
fi