summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/fabricos.rb
blob: b150c5156d1cd6fdb908615d1a892c1ca0fb9edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class FabricOS < Oxidized::Model
  # Brocade Fabric OS model #
  ## FIXME: Only ssh exec mode support, no telnet, no ssh screenscraping

  prompt /^([\w]+:+[\w]+[>]\s)$/
  comment '# '

  cmd 'chassisShow' do |cfg|
    comment cfg.each_line.reject { |line| line.match /Time Awake:/ or line.match /Power Usage \(Watts\):/ or line.match /Time Alive:/ or line.match /Update:/ }.join
  end

  cmd 'configShow -all' do |cfg|
    cfg = cfg.each_line.reject { |line| line.match /date = / }.join
    cfg
  end

  cfg :ssh do
    exec true # don't run shell, run each command in exec channel
  end
end