Fix missing ip for AWS and DO (#461)

* Fix missing ip for AWS and DO

* Fix Vultr
This commit is contained in:
Saeed Vaziry
2025-02-05 21:26:09 +01:00
committed by GitHub
parent 262c5e040d
commit dd78c86a60
4 changed files with 15 additions and 0 deletions

View File

@ -86,6 +86,9 @@ private function install(Server $server): void
while ($maxWait > 0) {
sleep(10);
$maxWait -= 10;
if (! $server->provider()->isRunning()) {
continue;
}
try {
$server->ssh()->connect();
break;