<?xml  version="1.0" ?><html>
<head>
<title></title>
</head>
<body>
<div align="left"><font face="Arial"><span style="font-size:10pt">Julian,</span></font></div>
<div align="left"><br/>
</div>
<div align="left"><font face="Arial"><span style="font-size:10pt">I had earlier emailed the list a code segment with an idea on how to recognize if the etrust signatures were 
updated during one of the 
hourly cycles.</span></font></div>
<div align="left"><br/>
</div>
<div align="left"><font face="Arial"><span style="font-size:10pt">But my message never appeared on the list. Did you get it?</span></font></div>
<div align="left"><br/>
</div>
<div align="left"><font face="Arial"><span style="font-size:10pt">If not, it was something like this (Place it in the etrust-autoupdate after the InoDist runs. This code then 
checks the installed signature file to 
see if its 5 min or less old):</span></font></div>
<div align="left"><br/>
</div>
<div align="left"><font face="Courier New"><span style="font-size:10pt">#!/usr/bin/perl</span></font></div>
<div align="left"><br/>
</div>
<div align="left"><font face="Courier New"><span style="font-size:10pt">$result=`find /opt/eTrustAntivirus/ino/config/ -cmin -5 -maxdepth 1 -name virsig.da0`;</span></font></div>
<div align="left"><font face="Courier New"><span style="font-size:10pt">if ($result =~ /virsig/) {</span></font></div>
<div align="left"><font face="Courier New"><span style="font-size:10pt">&#160;&#160; Sys::Syslog::syslog('info', &quot;eTrust was updated&quot;);</span></font></div>
<div align="left"><font face="Courier New"><span style="font-size:10pt"> } else {</span></font></div>
<div align="left"><font face="Courier New"><span style="font-size:10pt">&#160;&#160; Sys::Syslog::syslog('info', &quot;eTrust did not need updating&quot;);</span></font></div>
<div align="left"><font face="Courier New"><span style="font-size:10pt"> }</span></font></div>
<div align="left"></div>
</body>
</html>