Package: sysstat Version: 8.1.2-2 Severity: normal [ -x /usr/lib/sysstat/sa1 ] && { [ -r "$DEFAULT" ] && . "$DEFAULT" ; [ "$ENABLED" = "true" ] && exec /usr/lib/sysstat/sa1 $SA1_OPTIONS 1 1 ; }
The above is one of the cron entries for sysstat. Please make this something simpler that will consume less space when written to the log files 144 times per day per server. The following would work: [ -x /usr/lib/sysstat/sa1 ] && /usr/lib/sysstat/sa1 11 The /usr/lib/sysstat/sa1 script would then consult the /etc/default/sysstat file on it's own and determine the other options (and silently abort if configured to do so). Not only does this save log space, but it also makes it easier to read and understand what is happening - which is going to help when trying to fix problems at 3AM. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]