@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Disable known hosts when SSH'ing through Drydock

Summary: This prevents SSH from saving the host key into known_hosts; StrictHostKeyChecking only prevents it from prompting for unknown hosts, but it will still verify hosts against what it has previously saved.

Test Plan: N/A

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D10252

+1
+1
src/applications/drydock/interface/command/DrydockSSHCommandInterface.php
··· 86 86 return new ExecFuture( 87 87 'ssh '. 88 88 '-o StrictHostKeyChecking=no '. 89 + '-o UserKnownHostsFile=/dev/null '. 89 90 '-o BatchMode=yes '. 90 91 '%C -p %s -i %P %P@%s -- %s', 91 92 $command_timeout,