Sha256: b602f41e552544be45c924fde4d007c2fe4399002002f3873be5a593a94655e0
Contents?: true
Size: 648 Bytes
Versions: 4
Compression:
Stored size: 648 Bytes
Contents
class FabricOS < Oxidized::Model using Refinements # 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(/Power Usage:/) || 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
4 entries across 4 versions & 1 rubygems