diff options
author | Wild Kat <wk@users.noreply.github.com> | 2018-04-16 20:40:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-16 20:40:39 +0200 |
commit | 2e1717ec45d25b818f8ea10a5aa6d84f5d6947fc (patch) | |
tree | 3fc545ba2c256a98bdb04ec5946aafa122b27926 /lib/oxidized/model/routeros.rb | |
parent | 140954f78e50bed1aaf3f8fd42f849e3892e55c0 (diff) | |
parent | b29550ce0cfaf6192652747d340da2dc777ac22b (diff) |
Merge branch 'master' into refactor-slackdiff
Diffstat (limited to 'lib/oxidized/model/routeros.rb')
-rw-r--r-- | lib/oxidized/model/routeros.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oxidized/model/routeros.rb b/lib/oxidized/model/routeros.rb index 6717446..b62a3be 100644 --- a/lib/oxidized/model/routeros.rb +++ b/lib/oxidized/model/routeros.rb @@ -20,7 +20,7 @@ class RouterOS < Oxidized::Model cfg.gsub! /\x1B\[([0-9]{1,3}((;[0-9]{1,3})*)?)?[m|K]/, '' # strip ANSI colours cfg.gsub! /\\\r\n\s+/, '' # strip new line cfg.gsub! /# inactive time\r\n/, '' # Remove time based system comment - cfg = cfg.split("\n").select { |line| not line[/^\#\s\w{3}\/\d{2}\/\d{4}.*$/] } + cfg = cfg.split("\n").reject { |line| line[/^\#\s\w{3}\/\d{2}\/\d{4}.*$/] } cfg.join("\n") + "\n" end end |