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

EOS: Fix truncated configs #2038 #2489

Merged
2 commits merged into from
Mar 8, 2022
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 @@ -58,6 +58,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- System time and running time are now stripped from tplink model output (@spike77453)
- <?xml... line is no longer improperly stripped from OPNsense and PFsense backups (@pv2b)
- fixed an issue where Oxidized timeouts in Brocade ICX-series devices (@piterpunk)
- fixed an issue where EOS config was truncated. Fixes #2038 (@jake2184 @fhibler)


## [0.28.0 - 2020-05-18]
Expand Down
2 changes: 1 addition & 1 deletion lib/oxidized/model/eos.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class EOS < Oxidized::Model
# Arista EOS model #

prompt /^.+[#>]\s?$/
prompt /^.+[#>]$/

comment '! '

Expand Down