rancid-git icon indicating copy to clipboard operation
rancid-git copied to clipboard

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

Open joschi99 opened this issue 9 years ago • 1 comments

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

  • flash: timestamp is still changing every runcid-run
  • fan speed: has no sense and is changing very often

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

joschi99 avatar Aug 10 '16 08:08 joschi99

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;

yesrod avatar Jan 11 '17 18:01 yesrod