class Net::SSH::Verifiers::AcceptNew
Does a strict host verification, looking the server up in the known host files to see if a key has already been seen for this server. If this server does not appear in any host file, this will silently add the server. If the server does appear at least once, but the key given does not match any known for the server, an exception will be raised (HostKeyMismatch
). Otherwise, this returns true.
Public Instance Methods
Source
# File lib/net/ssh/verifiers/accept_new.rb, line 15 def verify(arguments) begin super rescue HostKeyUnknown => err err.remember_host! return true end end
Calls superclass method
Source
# File lib/net/ssh/verifiers/accept_new.rb, line 24 def verify_signature(&block) yield rescue HostKeyUnknown => err err.remember_host! return true end