diff options
Diffstat (limited to 'lib/oxidized/model/powerconnect.rb')
-rw-r--r-- | lib/oxidized/model/powerconnect.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/oxidized/model/powerconnect.rb b/lib/oxidized/model/powerconnect.rb index 732245e..0dbd808 100644 --- a/lib/oxidized/model/powerconnect.rb +++ b/lib/oxidized/model/powerconnect.rb @@ -1,15 +1,14 @@ class PowerConnect < Oxidized::Model + prompt /^([\w\s.@-]+[#>]\s?)$/ # allow spaces in hostname..dell does not limit it.. # + comment '! ' cmd :all do |cfg| cfg.each_line.to_a[1..-3].join end - cmd 'show running-config' do |cfg| - cfg = cfg.each_line.to_a[3..-1].join - cfg - end + cmd 'show running-config' cmd 'show version' do |cfg| comment cfg @@ -20,7 +19,7 @@ class PowerConnect < Oxidized::Model end cfg :telnet do - username /^User Name:/ + username /^User( Name)?:/ password /^\r?Password:/ end |