diff options
author | Arnoud Vermeer <a.vermeer@global.leaseweb.com> | 2017-03-16 19:28:38 +0100 |
---|---|---|
committer | Arnoud Vermeer <a.vermeer@global.leaseweb.com> | 2017-03-16 19:28:38 +0100 |
commit | d21aeefb6ad3fca04d25a7af57fd9bd350a18fd8 (patch) | |
tree | 83b727a8fe7613ac64b2852e3c4df70d55f0ce41 /lib | |
parent | f9cc5df2661eb4fc073c041f298073b89f91210b (diff) |
Add option to disable StrictHostKeyChecking
Diffstat (limited to 'lib')
-rw-r--r-- | lib/oxidized/input/ssh.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/oxidized/input/ssh.rb b/lib/oxidized/input/ssh.rb index edde6b7..858d5cd 100644 --- a/lib/oxidized/input/ssh.rb +++ b/lib/oxidized/input/ssh.rb @@ -25,7 +25,10 @@ module Oxidized @log = File.open(Oxidized::Config::Log + "/#{@node.ip}-ssh", 'w') if Oxidized.config.input.debug? port = vars(:ssh_port) || 22 if proxy_host = vars(:ssh_proxy) - proxy = Net::SSH::Proxy::Command.new("ssh -o StrictHostKeyChecking=no #{proxy_host} -W %h:%p") + proxy_command = "ssh " + proxy_command += "-o StrictHostKeyChecking=no " unless secure + proxy_command += "#{proxy_host} -W %h:%p" + proxy = Net::SSH::Proxy::Command.new(proxy_command) end ssh_opts = { :port => port.to_i, |