In order to fix the problem, Jerry Pendergraft, the aeintegratq
author, has prepared the patch in the attached message.
--- Begin Message ---
It would be aeintegratq being run by some tests that is creating the log.
Easy fix. I will create the log in the aegis test directory if/when being
run by tests. Here is the patch and I will send Peter an aedist.
***************
*** 152,158 ****
hash_option("-c", $Option{change}, \%Ready) if
defined($Option{change});
# define some locations for logging and such
! if ( -d "$ComDir/integrations" ) {
$LogFile = "$ComDir/integrations/integrate.log";
}else{
$LogFile = "$ENV{'HOME'}/integrate.log";
--- 152,160 ----
hash_option("-c", $Option{change}, \%Ready) if
defined($Option{change});
# define some locations for logging and such
! if ( defined( $ENV{'AEGIS_TEST_DIR'} ) ) {
! $LogFile = "$ENV{'AEGIS_TEST_DIR'}/integrate.log";
! }elsif ( -d "$ComDir/integrations" ) {
$LogFile = "$ComDir/integrations/integrate.log";
}else{
$LogFile = "$ENV{'HOME'}/integrate.log";
--
Jerry Pendergraft [EMAIL PROTECTED]
St. Jude Medical voice: 651-523-6935
1350 Energy Lane, Suite 110 fax: 651-644-7897
St Paul, MN 55108-5254 mobile: 651-491-0163
On Thu, 28 Apr 2005, Walter Franzini wrote:
> I'm now working on debian and monitoring aegis related bugs.
>
>
>
> SysNet - via Dossi,8 27100 Pavia Tel: +390382573859 Fax: +390382476497
>
>
--- End Message ---