xpilot-ng/logwatch.shared.applyxpilotdate
Michael Thomas 656f3c8854 - Add patch to prevent crash when running with robots not in idle mode
- Added logwatch files
- Switch from fedora-usermgmt to vanilla useradd
2007-02-23 05:07:27 +00:00

21 lines
555 B
Perl
Executable file

##########################################################################
##########################################################################
use Logwatch ':dates';
my $Debug = $ENV{'LOGWATCH_DEBUG'} || 0;
$SearchDate = TimeFilter('%d %b %H:%M:%S');
if ( $Debug > 5 ) {
print STDERR "DEBUG: Inside ApplyXpilotDate...\n";
print STDERR "DEBUG: Looking For: " . $SearchDate . "\n";
}
while (defined($ThisLine = <STDIN>)) {
if ($ThisLine =~ m/^$SearchDate /o) {
print $ThisLine;
}
}
# vi: shiftwidth=3 syntax=perl tabstop=3 et