From 9f606e7b9a1265e7d6c57524b1df7abad36dbb55 Mon Sep 17 00:00:00 2001 From: Arnoud Vermeer Date: Thu, 31 Mar 2016 15:56:59 +0200 Subject: Remove the pager and remove 'Building running configuration. Please wait...' --- lib/oxidized/model/supermicro.rb | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'lib') diff --git a/lib/oxidized/model/supermicro.rb b/lib/oxidized/model/supermicro.rb index 3401593..361244c 100644 --- a/lib/oxidized/model/supermicro.rb +++ b/lib/oxidized/model/supermicro.rb @@ -1,13 +1,6 @@ class Supermicro < Oxidized::Model comment '! ' - # example how to handle pager - # --- [Space] Next page, [Enter] Next line, [A] All, Others to exit --- - expect /^---(.*)exit ---$/ do |data, re| - send 'a' - data.sub re, '' - end - cmd :secret do |cfg| cfg.gsub!(/password \d+ (\S+).*/, '') cfg.gsub!(/community (\S+)/, 'community ') @@ -15,7 +8,7 @@ class Supermicro < Oxidized::Model end cmd :all do |cfg| - cfg.each_line.to_a[1..-2].join + cfg.each_line.to_a[2..-2].join end cmd 'show running-config' @@ -28,6 +21,10 @@ class Supermicro < Oxidized::Model comment cfg end + cmd 'show system' do |cfg| + comment cfg + end + cmd 'show version' do |cfg| comment cfg end @@ -42,7 +39,7 @@ class Supermicro < Oxidized::Model end cfg :telnet, :ssh do + post_login 'terminal length 0' pre_logout 'exit' end - end \ No newline at end of file -- cgit v1.2.1