From a56ae15a4c0adb0870a752c955d1319c82c627da Mon Sep 17 00:00:00 2001 From: ytti Date: Sun, 6 May 2018 11:08:20 +0100 Subject: rubocop fixes much value, wow, very readable --- lib/oxidized/input/ssh.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/oxidized/input') diff --git a/lib/oxidized/input/ssh.rb b/lib/oxidized/input/ssh.rb index e58d089..3bac619 100644 --- a/lib/oxidized/input/ssh.rb +++ b/lib/oxidized/input/ssh.rb @@ -121,10 +121,10 @@ module Oxidized # some models have SSH auth or terminal auth based on version of code # if SSH is configured for terminal auth, we'll still try to detect prompt def login - match_re = [ @node.prompt ] + match_re = [@node.prompt] match_re << @username if @username match_re << @password if @password - until (match=expect(match_re)) == @node.prompt + until (match = expect(match_re)) == @node.prompt cmd(@node.auth[:username], nil) if match == @username cmd(@node.auth[:password], nil) if match == @password match_re.delete match -- cgit v1.2.1