From 80f5c733b3b9c1bf0be3bcafbb868574b77c91b2 Mon Sep 17 00:00:00 2001 From: Saku Ytti Date: Sat, 27 Apr 2013 13:00:11 +0300 Subject: Fix connction reset on disconnect Dell Powerconnect does this --- lib/oxidized/input/telnet.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'lib/oxidized/input') 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)/ -- cgit v1.2.1