diff options
author | Arnoud Vermeer <a.vermeer@tech.leaseweb.com> | 2016-03-31 15:56:59 +0200 |
---|---|---|
committer | Arnoud Vermeer <a.vermeer@tech.leaseweb.com> | 2016-03-31 15:56:59 +0200 |
commit | 9f606e7b9a1265e7d6c57524b1df7abad36dbb55 (patch) | |
tree | 439321938a5d834dfb8a7f5e46dc927b5fd5a13e | |
parent | 0aae1a703a9525e8083741a6fdee5ab2b4f0a191 (diff) |
Remove the pager and remove 'Building running configuration. Please wait...'
-rw-r--r-- | lib/oxidized/model/supermicro.rb | 15 |
1 files changed, 6 insertions, 9 deletions
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+).*/, '<secret removed>') cfg.gsub!(/community (\S+)/, 'community <hidden>') @@ -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 |