Sha256: 70c1fd18d3598148e226935be9844aa6fc2a6fde07a4df377a94f87ead9f08a4

Contents?: true

Size: 585 Bytes

Versions: 1

Compression:

Stored size: 585 Bytes

Contents

class CoriantGroove < Oxidized::Model

  comment '# '
  
  prompt /^(\w+@.*>\s*)$/

  cmd :all do |cfg|
    cfg.each_line.to_a[1..-3].map{|line|line.delete("\r").rstrip}.join("\n") + "\n"
  end

  cmd 'show inventory' do |cfg|
    cfg = cfg.each_line.to_a[0..-2].join
    comment cfg
  end

  cmd 'show softwareload' do |cfg|
    cfg = cfg.each_line.to_a[0..-2].join
    comment cfg
  end
  
  cmd 'show config | display commands' do |cfg|
    cfg.each_line.to_a[1..-1].join
  end

  cfg :ssh do
    post_login 'set -f cli-config cli-columns 65535'
    pre_logout 'quit -f'
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
oxidized-0.21.0 lib/oxidized/model/coriantgroove.rb