summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/coriantgroove.rb
blob: 4972eb7ea6a3e45452307f37cf79ce4ba63979b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 4000'
    pre_logout 'quit -f'
  end
end