diff --git a/app/Jobs/Services/RunStep.php b/app/Jobs/Services/RunStep.php index abfb415..207f231 100644 --- a/app/Jobs/Services/RunStep.php +++ b/app/Jobs/Services/RunStep.php @@ -31,6 +31,7 @@ class RunStep implements ShouldQueue $ssh = Ssh::create('root', $server->ipv4) ->usePrivateKey(storage_path('app/private/ssh/id_ed25519')) + ->disableStrictHostKeyChecking() ->onOutput(function ($output) { $this->step->update([ 'logs' => $this->step->logs . "\n" . trim($output),