strict checking?

This commit is contained in:
2025-03-30 15:15:44 +00:00
parent f7c32de49b
commit 49a8493f11

View File

@@ -24,6 +24,7 @@ class ProvisionServer implements ShouldQueue, ShouldBeEncrypted
public function handle(): void public function handle(): void
{ {
$ssh = Ssh::create('root', $this->server->ipv4 ?? $this->server->ipv6) $ssh = Ssh::create('root', $this->server->ipv4 ?? $this->server->ipv6)
->disableStrictHostKeyChecking()
->usePassword($this->rootPassword) ->usePassword($this->rootPassword)
->setTimeout(10); ->setTimeout(10);