diff options
| author | Wild Kat <wk@futureinquestion.net> | 2018-04-27 12:37:26 +0200 | 
|---|---|---|
| committer | Wild Kat <wk@futureinquestion.net> | 2018-04-27 12:37:26 +0200 | 
| commit | 8f1ac4ad5503ac4a59d41ebc3f142c1d5d097bfb (patch) | |
| tree | 8860b268793dd783b9b5cd5d1a255fe1edebfb0e /lib/oxidized/model/nxos.rb | |
| parent | cd92bac4a582eb8e19d9d036455591c9684eae72 (diff) | |
| parent | 34fd5369feee94ab45c5a81d7769b1df717e4c8c (diff) | |
Merge remote-tracking branch 'upstream/master' into pr-1280
Diffstat (limited to 'lib/oxidized/model/nxos.rb')
| -rw-r--r-- | lib/oxidized/model/nxos.rb | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/lib/oxidized/model/nxos.rb b/lib/oxidized/model/nxos.rb index 60d6037..d1449dd 100644 --- a/lib/oxidized/model/nxos.rb +++ b/lib/oxidized/model/nxos.rb @@ -1,5 +1,4 @@  class NXOS < Oxidized::Model -    prompt /^(\r?[\w.@_()-]+[#]\s?)$/    comment '! ' @@ -10,7 +9,7 @@ class NXOS < Oxidized::Model      cfg.gsub! /^(radius-server key).*/, '\\1 <secret hidden>'      cfg    end -   +    cmd 'show version' do |cfg|      cfg = cfg.each_line.take_while { |line| not line.match(/uptime/i) }      comment cfg.join "" @@ -18,7 +17,7 @@ class NXOS < Oxidized::Model    cmd 'show inventory' do |cfg|      comment cfg -  end  +  end    cmd 'show running-config' do |cfg|      cfg.gsub! /^!Time:[^\n]*\n/, '' | 
