diff options
| author | nopedial <sam@arahant.net> | 2016-02-06 21:21:21 +0100 | 
|---|---|---|
| committer | nopedial <sam@arahant.net> | 2016-02-06 21:21:21 +0100 | 
| commit | 214fc49dc12646e1c9a00e5251c3c8cd48ad5918 (patch) | |
| tree | 756c74144ebdd833e063dd5f41ccb6ecdc467f0e /lib/oxidized/model | |
| parent | ac096bc4c7327585dd5e8bb4de0cd5874bfa3090 (diff) | |
| parent | 2467448f47c6858a4b26c6fb859460a5ca43c380 (diff) | |
Merge pull request #310 from natm/master
MRV Master-OS: Didnt handle no match found
Diffstat (limited to 'lib/oxidized/model')
| -rw-r--r-- | lib/oxidized/model/masteros.rb | 32 | 
1 files changed, 16 insertions, 16 deletions
| diff --git a/lib/oxidized/model/masteros.rb b/lib/oxidized/model/masteros.rb index d48fe27..587fdc4 100644 --- a/lib/oxidized/model/masteros.rb +++ b/lib/oxidized/model/masteros.rb @@ -2,36 +2,36 @@ class MasterOS < Oxidized::Model    # MRV MasterOS model # -comment '!'  +comment '!'    cmd :secret do |cfg|      cfg.gsub! /^(snmp-server community).*/, '\\1 <configuration removed>'      cfg.gsub! /username (\S+) password encrypted (\S+) class (\S+).*/, '<secret hidden>' -    cfg  -  end  +    cfg +  end    cmd :all do |cfg|      cfg.each_line.to_a[1..-2].join -    cfg.gsub! /^(! Configuration ).*/, '!' -  end  +    cfg.gsub /^(! Configuration ).*/, '!' +  end    cmd 'show inventory' do |cfg|      cfg = cfg.each_line.to_a[0..-2].join -    comment cfg  -  end  +    comment cfg +  end    cmd 'show plugins' do |cfg| -    comment cfg  -  end  +    comment cfg +  end    cmd 'show hw-config' do |cfg| -    comment cfg  -  end  +    comment cfg +  end    cmd 'show running-config' do |cfg|      cfg = cfg.each_line.to_a[3..-1].join -    cfg  -  end  +    cfg +  end    cfg :telnet, :ssh do      post_login 'no pager' @@ -39,9 +39,9 @@ comment '!'        post_login do          send "enable\n"          send vars(:enable) + "\n" -      end  -    end  +      end +    end      pre_logout 'exit' -  end  +  end  end | 
