dotwaffle / rancid-git

DEPRECATED -- Strongly consider using the upstream, the version here is very out of date and a poor place to start from!
http://www.shrubbery.net/rancid/
Other
218 stars 92 forks source link

Force10: FTOS 9 keeps triggering alerts due to flash mod time changing #86

Open joschi99 opened 8 years ago

joschi99 commented 8 years ago

We use rancid 3.4.1. On every runcid-run whe have a update on our Force10 S4820T switches, because:

2016-08-10 10_23_42- rancid repository diff of _dell_configs_192 168 253 252

Is there any solution about this?

Thanks in advance

Jochen

yesrod commented 7 years ago

The pattern in question that's supposed to prevent this is at line 340 of f10rancid:

/ \.{1,2}$/ && next;

For some reason the end of line match is causing issues. I ended up with the following pattern instead:

/\+\d{2}:\d{2} \.{1,2}/ && next;