Sha256: 115ebb4684f53abb98404b9a69fb0ae9680f0b71f738d0a907229784253cab37

Contents?: true

Size: 628 Bytes

Versions: 2

Compression:

Stored size: 628 Bytes

Contents

class FirewareOS < Oxidized::Model
  using Refinements

  prompt /^\[?\w*\]?\w*?(<[\w-]*>)?(#|>)\s*$/
  comment  '-- '

  cmd :all do |cfg|
    cfg.cut_both
  end

  # Handle Logon Disclaimer added in XTM 11.9.3
  expect /^I have read and accept the Logon Disclaimer message. \(yes or no\)\? $/ do |data, re|
    send "yes\n"
    data.sub re, ''
  end

  cmd 'show sysinfo' do |cfg|
    # avoid commits due to uptime
    cfg = cfg.each_line.reject { |line| line.match /(.*time.*)|(.*memory.*)|(.*cpu.*)/ }
    cfg = cfg.join
    comment cfg
  end

  cmd 'export config to console'

  cfg :ssh do
    pre_logout 'exit'
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
oxidized-0.30.1 lib/oxidized/model/firewareos.rb
oxidized-0.30.0 lib/oxidized/model/firewareos.rb