More commits for logwatch.pl and others
Mike Tremaine <[email protected]>
| Newsgroups | gmane.comp.log.logwatch.devel |
|---|---|
| Message-ID | <[email protected]> |
Yesterday and today I made several more commits. I have now tested it
atleast a little and can report that the hostlimit and hostformat
switches seem to be working fine.
I can do things like --hostlimit sirius,10.0.2.1 --hostformat split and
have generate a report that only has those 2 hosts in it. So that is a
good thing.
I also added a new config option to suppress the hostlimit option for
logfiles that are not standard syslog
Here is the code chunk
> #Hostlimit filter need to add ability to negate this use
"NoHostFilter = Yes" in logfile like samba -mgt
> if ( ($Config{'hostlimit'}) &&
(!$LogFileData{$LogFile}{'nohostfilter'}) ) {
980a982,984
> if ($LogFileData{$ThisKey1}{'nohostfilter'}) {
> print " NoHostfilter = " .
$LogFileData{$ThisKey1}{'nohostfilter'} . "\n";
> }
I added it to samba.conf as noted there are obviously other places this
belongs also.
-Mike