<HTML>
<HEAD>
<TITLE>Patch for francid, against rancid-2.3.2a5</TITLE>
</HEAD>
<BODY>
<FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>Foundry code 03.0.01bT3e3 is very chatty about fan status which causes rancid to log many changes (even when nothing is really changing) WRT fan speed. Here’s a short patch to fix flogin to ignore the fan speed changes in the show chassis output:<BR>
<BR>
*** /usr/local/src/rancid-2.3.2a5/bin/francid 2006-09-27 12:24:07.000000000 -0700<BR>
--- /tftpboot/rancid/bin/francid 2006-09-27 12:29:49.000000000 -0700<BR>
***************<BR>
*** 201,206 ****<BR>
--- 201,212 ----<BR>
if (/temperature:/i) {<BR>
$skip = 1;<BR>
}<BR>
+ <BR>
+ # jadams@eline.com: Also ignore fan speed changes<BR>
+ if (/speed/i) {<BR>
+ $skip = 1;<BR>
+ }<BR>
+ <BR>
next if $skip;<BR>
<BR>
ProcessHistory("CHASSIS","","","! $_");<BR>
[root@argus rancid-2.3.2a5]# </SPAN></FONT>
</BODY>
</HTML>