Skip to content

Commit 70b38d5

Browse files
authored
Merge pull request #413 from tobiasge/fix-412
Is greater than or equal to is "-ge" and not "-gte".
2 parents 6e7a64b + a21d146 commit 70b38d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/launch-netbox.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ load_configuration() {
77
MAX_WAIT=10
88
WAIT_COUNT=0
99
while [ ! -S $UNIT_SOCKET ]; do
10-
if [ $WAIT_COUNT -gte $MAX_WAIT ]; then
10+
if [ $WAIT_COUNT -ge $MAX_WAIT ]; then
1111
echo "⚠️ No control socket found; configuration will not be loaded."
1212
return 1
1313
fi

0 commit comments

Comments
 (0)