diff options
Diffstat (limited to 'lib/oxidized/model')
| -rw-r--r-- | lib/oxidized/model/panos.rb | 2 | ||||
| -rw-r--r-- | lib/oxidized/model/voss.rb | 16 | 
2 files changed, 12 insertions, 6 deletions
| diff --git a/lib/oxidized/model/panos.rb b/lib/oxidized/model/panos.rb index 68d80c3..67ccaec 100644 --- a/lib/oxidized/model/panos.rb +++ b/lib/oxidized/model/panos.rb @@ -28,6 +28,6 @@ class PanOS < Oxidized::Model    cfg :ssh do      post_login 'set cli pager off' -    pre_logout 'exit' +    pre_logout 'quit'    end  end diff --git a/lib/oxidized/model/voss.rb b/lib/oxidized/model/voss.rb index 599462a..6b15fb3 100644 --- a/lib/oxidized/model/voss.rb +++ b/lib/oxidized/model/voss.rb @@ -1,7 +1,7 @@  class Voss < Oxidized::Model    # Avaya VSP Operating System Software(VOSS)    # Created by danielcoxman@gmail.com -  # May 15, 2017 +  # May 25, 2017    # This was tested on vsp4k and vsp8k    comment '# ' @@ -10,10 +10,16 @@ class Voss < Oxidized::Model    # needed for proper formatting after post_login    cmd('') { |cfg| comment "#{cfg}\n" } -  # get some general information about switch -  cmd('show sys-info card') { |cfg| comment "#{cfg}\n" } -  cmd('show sys-info fan') { |cfg| comment "#{cfg}\n" } -  cmd('show sys-info power') { |cfg| comment "#{cfg}\n" } +   +  # Get sys-info and remove information that changes such has temperature and power +  cmd 'show sys-info' do |cfg| +    cfg.gsub! /(^((.*)SysUpTime(.*))$)/, 'removed SysUpTime' +    cfg.gsub! /^((.*)Temperature Info \:(.*\r?\n){4})/, 'removed Temperature Info and 3 more lines' +    cfg.gsub! /(^((.*)AmbientTemperature(.*)\:(.*))$)/, 'removed AmbientTemperature' +    cfg.gsub! /(^((.*)Temperature(.*)\:(.*))$)/, 'removed Temperature' +    cfg.gsub! /(^((.*)Total Power Usage(.*)\:(.*))$)/, 'removed Total Power Usage' +    comment "#{cfg}\n" +  end    # more the config rather than doing a show run    cmd 'more config.cfg' do |cfg| | 
