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

tplink: Strip 'System Time' and 'Running Time' #2420

Merged
1 commit merged into from
Dec 17, 2021
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 @@ -42,6 +42,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- filter next periodic save schedule time in xos model output (@sargon)
- fixed ArubaOS-CX enviroment/system inconsistent values #2297 (@raunz)
- Update AirFiber prompt regex (@murrant)
- System time and running time are now stripped from tplink model output (@spike77453)

## [0.28.0 - 2020-05-18]

Expand Down
2 changes: 2 additions & 0 deletions lib/oxidized/model/tplink.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ class TPLink < Oxidized::Model
end

cmd 'show system-info' do |cfg|
cfg.gsub! /(System Time\s+-).*/, '\\1 <stripped>'
cfg.gsub! /(Running Time\s+-).*/, '\\1 <stripped>'
comment cfg.each_line.to_a[3..-3].join
end

Expand Down