diff options
author | Wild Kat <wk@futureinquestion.net> | 2018-04-27 12:37:26 +0200 |
---|---|---|
committer | Wild Kat <wk@futureinquestion.net> | 2018-04-27 12:37:26 +0200 |
commit | 8f1ac4ad5503ac4a59d41ebc3f142c1d5d097bfb (patch) | |
tree | 8860b268793dd783b9b5cd5d1a255fe1edebfb0e /lib/oxidized/model/acsw.rb | |
parent | cd92bac4a582eb8e19d9d036455591c9684eae72 (diff) | |
parent | 34fd5369feee94ab45c5a81d7769b1df717e4c8c (diff) |
Merge remote-tracking branch 'upstream/master' into pr-1280
Diffstat (limited to 'lib/oxidized/model/acsw.rb')
-rw-r--r-- | lib/oxidized/model/acsw.rb | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/oxidized/model/acsw.rb b/lib/oxidized/model/acsw.rb index 1aee2b6..c0857b3 100644 --- a/lib/oxidized/model/acsw.rb +++ b/lib/oxidized/model/acsw.rb @@ -1,5 +1,4 @@ class ACSW < Oxidized::Model - prompt /([\w.@()\/\\-]+[#>]\s?)/ comment '! ' @@ -25,16 +24,13 @@ class ACSW < Oxidized::Model cfg end - cmd 'show version' do |cfg| comment cfg end - - cmd 'show inventory' do |cfg| - comment cfg - end - + cmd 'show inventory' do |cfg| + comment cfg + end cmd 'show running-config' do |cfg| cfg = cfg.each_line.to_a[3..-1] @@ -63,5 +59,4 @@ class ACSW < Oxidized::Model post_login 'terminal length 0' pre_logout 'exit' end - end |