Skip to content

Commit

Permalink
Bugfix: make 'docker exec' more tolerant during container+VM startup
Browse files Browse the repository at this point in the history
- Fixes minor logic issue in commit cf4c3a6
  • Loading branch information
struanb committed Jan 8, 2024
1 parent a729618 commit c1546b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runcvm-scripts/runcvm-ctr-exec
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ do
done

# If startup was detected, wait a few extra seconds for dropbear sshd to be ready
if [ -n "$delay" ]; then
if [ "$delay" -ne 0 ]; then
sleep 2
fi

Expand Down

0 comments on commit c1546b2

Please sign in to comment.