diff options
| author | Elvin Efendi <elvin.efendiyev@gmail.com> | 2015-12-09 22:52:48 -0500 | 
|---|---|---|
| committer | Elvin Efendi <elvin.efendiyev@gmail.com> | 2015-12-09 22:52:48 -0500 | 
| commit | a561109ce1495747df1e019575105e0caf2dcdb5 (patch) | |
| tree | ebc255b40f94043762a6a7a63abd46c8af892837 /lib/oxidized | |
| parent | 0362787087a84d3fd8dfd0b38a657d73947a8753 (diff) | |
| parent | f79e596b571b8b5913c2b4a9dc79968a712dab7b (diff) | |
Merge pull request #11 from Shopify/clean-model
keep the config output clean
Diffstat (limited to 'lib/oxidized')
| -rw-r--r-- | lib/oxidized/model/junos.rb | 33 | 
1 files changed, 2 insertions, 31 deletions
| diff --git a/lib/oxidized/model/junos.rb b/lib/oxidized/model/junos.rb index 1b641ca..bb56481 100644 --- a/lib/oxidized/model/junos.rb +++ b/lib/oxidized/model/junos.rb @@ -20,7 +20,7 @@ class JunOS < Oxidized::Model    cmd 'show configuration | display omit' -  cmd 'show version detail' do |cfg| +  cmd 'show version' do |cfg|      @model = $1 if cfg.match(/^Model: (\S+)/)      comment cfg    end @@ -30,40 +30,11 @@ class JunOS < Oxidized::Model      case @model      when 'mx960'        out << cmd('show chassis fabric reachability')  { |cfg| comment cfg } -    when 'mx480' -      out << cmd('show chassis scb')  { |cfg| comment cfg } -      out << cmd('show chassis sfm detail')  { |cfg| comment cfg } -      out << cmd('show chassis ssb')  { |cfg| comment cfg } -      out << cmd('show chassis feb detail')  { |cfg| comment cfg } -      out << cmd('show chassis feb')  { |cfg| comment cfg } -      out << cmd('show chassis cfeb')  { |cfg| comment cfg }      end      out    end -  cmd('show chassis environment') do |cfg| -    cfg.gsub!(/\d+ degrees.* F/, '<measurement stripped>') -    cfg.gsub!(/Spinning at \S+/, '<measurement stripped>') -    comment cfg -  end -  cmd('show chassis firmware') { |cfg| comment cfg } -  cmd('show chassis fpc detail') do |cfg| -    cfg.gsub!(/(Temperature\s+)(\d+)(.+)/, '\1<stripped>\3') -    cfg.gsub!(/(\s+\d+ days,)(.+seconds)/, '\1 <stripped>\3') -    comment cfg -  end -  cmd('show chassis hardware detail') { |cfg| comment cfg } -  cmd('show chassis routing-engine') do |cfg| -    cfg.gsub!(/(\S+\s+)(\d{2})( percent)/, '\1<stripped>\3') -    cfg.gsub!(/(\S+\s+)(\s\d{1})( percent)/, '\1<stripped>\3') -    cfg.gsub!(/(\s+\d+ days,)(.+seconds)/, '\1 <stripped>\3') -    cfg.gsub!(/(\s+)(\d+\.\d+)(\s+)(\d+\.\d+)(\s+)(\d+\.\d+)/, '\1<stripped>\3<stripped>\5<stripped>') -    comment cfg -  end -  cmd('show chassis alarms') { |cfg| comment cfg } -  cmd('show system license') { |cfg| comment cfg } -  cmd('show system boot-messages') { |cfg| comment cfg } -  cmd('show system core-dumps') { |cfg| comment cfg } +  cmd('show chassis hardware') { |cfg| comment cfg }    cfg :telnet do      username(/^login:/) | 
