Sha256: 142df5f8190fb7b72b397996bf81bb200f6ddd574bb8636a386aa2d7d63153e0
Contents?: true
Size: 597 Bytes
Versions: 6
Compression:
Stored size: 597 Bytes
Contents
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:/) || line.match(/Power Usage \(Watts\):/) || line.match(/Time Alive:/) || 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
Version data entries
6 entries across 6 versions & 1 rubygems