jenkins-bot has submitted this change and it was merged.

Change subject: Don't process ~/.ssh/config
......................................................................


Don't process ~/.ssh/config

Brad reported that sync-dir wasn't working. Upon investigation, it turned out
that his ~/.ssh/config included configuration options that had a higher
priority than command-line options. To prevent this from being an issue, we
need to instruct ssh to not process configuration directives from
~/.ssh/config.

Change-Id: Id7495d1cfc44cc6dc593f80450c3937d2a395205
---
M scap/ssh.py
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Ori.livneh: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/scap/ssh.py b/scap/ssh.py
index a8389a2..40e4422 100644
--- a/scap/ssh.py
+++ b/scap/ssh.py
@@ -17,7 +17,7 @@
 from . import utils
 
 
-SSH = ('/usr/bin/ssh', '-oBatchMode=yes', '-oSetupTimeout=10')
+SSH = ('/usr/bin/ssh', '-oBatchMode=yes', '-oSetupTimeout=10', '-F/dev/null')
 
 
 class Job(object):

-- 
To view, visit https://gerrit.wikimedia.org/r/175108
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Id7495d1cfc44cc6dc593f80450c3937d2a395205
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/tools/scap
Gerrit-Branch: master
Gerrit-Owner: Ori.livneh <[email protected]>
Gerrit-Reviewer: Anomie <[email protected]>
Gerrit-Reviewer: BryanDavis <[email protected]>
Gerrit-Reviewer: Ori.livneh <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to