[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cobalt-developers] Stats not generating in RAQ3



FYI,

I just realize that the stats on my RAQ3 were not generating since Oct. 7,
and I went
hunting for the problem (My RAQ3 has all the updates installed). I found out
that the "analog" program was not being executed when called by the
"split_logs" perl script that is in charge of generating the stats every day
at 4am.

Then, I just added quotes to the system call that was executing the analog
command line and everything works fine now.

Around line 400 of the file /usr/local/sbin/split_logs:

  # now we run analog if session_log exists
  if ( -e $session_log){
       system("$analog < $session_log");
  }


Before it was:

  # now we run analog if session_log exists
  if ( -e $session_log){
       system($analog < $session_log);
  }


JLA