Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edit h3c model prompt to support the square brackets in system-view. #3110

Merged
merged 2 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- dlinknextgen removes user and snmp-server secrets (@tcrichton)
- dnos: hide secrets in "ospf message-digest-key", "authentication-type" and "bsd-username" (@rybnico)
- junos: Replace dynamic value in VMX-BANDWIDTH with count, hide ssh keys
- h3c: change prompt to expect either angle (user-view) or square (system-view) brackets (@nl987)

### Fixed
- fixed empty lines for ZyXEL GS1900 switches (@jluebbe)
Expand Down
2 changes: 1 addition & 1 deletion lib/oxidized/model/h3c.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class H3C < Oxidized::Model

# H3C

prompt /^.*(<[\w.-]+>)$/
prompt /^.*([<\[][\w.-]+[>\]])$/
comment '# '

cmd :secret do |cfg|
Expand Down
Loading