summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaku Ytti <saku@ytti.fi>2013-04-27 13:00:11 +0300
committerSaku Ytti <saku@ytti.fi>2013-04-27 13:00:11 +0300
commit80f5c733b3b9c1bf0be3bcafbb868574b77c91b2 (patch)
treec0a0df8b1e012ffee25037c856abbdd89b602789
parent70cb33c214ced1235b8e6077e11177a3ba6b7977 (diff)
Fix connction reset on disconnect
Dell Powerconnect does this
-rw-r--r--lib/oxidized/input/telnet.rb7
-rw-r--r--oxidized.gemspec2
2 files changed, 6 insertions, 3 deletions
diff --git a/lib/oxidized/input/telnet.rb b/lib/oxidized/input/telnet.rb
index 2da459e..09c3df9 100644
--- a/lib/oxidized/input/telnet.rb
+++ b/lib/oxidized/input/telnet.rb
@@ -39,8 +39,11 @@ module Oxidized
end
def disconnect
- @pre_logout.each { |command| cmd(command, nil) }
- @telnet.close
+ begin
+ @pre_logout.each { |command| cmd(command, nil) }
+ @telnet.close
+ rescue Errno::ECONNRESET
+ end
end
def username re=/^(Username|login)/
diff --git a/oxidized.gemspec b/oxidized.gemspec
index a1554f9..da255d6 100644
--- a/oxidized.gemspec
+++ b/oxidized.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'oxidized'
- s.version = '0.0.3'
+ s.version = '0.0.4'
s.platform = Gem::Platform::RUBY
s.authors = [ 'Saku Ytti' ]
s.email = %w( saku@ytti.fi )