rpms/logwatch/FC-6 logwatch-7.3-audit2.patch, NONE, 1.1 logwatch-7.3-automount.patch, NONE, 1.1 logwatch-7.3-init.patch, NONE, 1.1 logwatch-7.3-named.patch, NONE, 1.1 logwatch-7.3-named2.patch, NONE, 1.1 logwatch-7.3-pam_unix2.patch, NONE, 1.1 logwatch-7.3-secure2.patch, NONE, 1.1 logwatch-7.3-smart.patch, NONE, 1.1 logwatch-7.3-sshd2.patch, NONE, 1.1 logwatch.spec, 1.43, 1.44

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Thu Nov 16 08:52:01 UTC 2006


Author: varekova

Update of /cvs/dist/rpms/logwatch/FC-6
In directory cvs.devel.redhat.com:/tmp/cvs-serv4342

Modified Files:
	logwatch.spec 
Added Files:
	logwatch-7.3-audit2.patch logwatch-7.3-automount.patch 
	logwatch-7.3-init.patch logwatch-7.3-named.patch 
	logwatch-7.3-named2.patch logwatch-7.3-pam_unix2.patch 
	logwatch-7.3-secure2.patch logwatch-7.3-smart.patch 
	logwatch-7.3-sshd2.patch 
Log Message:
- added named, pam_unix, secure, smart, automount, 
  audit, init and sshd patches


logwatch-7.3-audit2.patch:
 audit |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE logwatch-7.3-audit2.patch ---
--- logwatch-7.3/scripts/services/audit.pom	2006-09-13 11:05:53.000000000 +0200
+++ logwatch-7.3/scripts/services/audit	2006-09-13 13:07:22.000000000 +0200
@@ -71,7 +71,7 @@
 	( $ThisLine =~ /: enforcing=[0-9]+ old_enforcing=[0-9]+ auid=[0-9]+/) or
 	( $ThisLine =~ /: policy loaded auid=[0-9]+/) or
 	( $ThisLine =~ /: user pid=[0-9]+ uid=[0-9]+ auid=[0-9]+ subj=system_u:system_r:system_dbusd_t:[0-9a-z]+ msg=/) or
-	( $ThisLine =~ /^kernel: audit\([0-9.]+:[0-9]+\): selinux=[0-9]+ auid=[0-9]+/)
+	( $ThisLine =~ /audit\([0-9.]+:[0-9]+\): (selinux=[0-9]+|auid=[0-9]+|prom=[0-9]+|old_prom=[0-9]+|dev=[^ ]+| )+$/)
     ) { 
 	# Ignore these entries
     } elsif ( $ThisLine =~ /audit\([0-9]{10}.[0-9]{3}:[0-9]\): initialized$/) {

logwatch-7.3-automount.patch:
 automount |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)

--- NEW FILE logwatch-7.3-automount.patch ---
--- logwatch-7.3.1/scripts/services/automount.pom	2005-12-24 05:05:50.000000000 +0100
+++ logwatch-7.3.1/scripts/services/automount	2006-10-20 15:19:09.000000000 +0200
@@ -18,7 +18,8 @@
    if ( ($ThisLine =~ /^using kernel protocol version .*$/) or
          ($ThisLine =~ /^expired .*$/) or
          ($ThisLine =~ /^lookup\(ldap\): got answer, but no first entry for /) or
-         ($ThisLine =~ /^>>.*mount: .*$/) ) {
+         ($ThisLine =~ /^>>.*mount: .*$/) or
+         ($ThisLine =~ /lookup_read_master: lookup\(nisplus\): couldn't locat nis\+ table auto.master/) ) {
       # don't care about these
    }
    elsif ( ($ThisMount) = ($ThisLine =~ /^attempting to mount entry (.*)$/) ) {

logwatch-7.3-init.patch:
 init |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletion(-)

--- NEW FILE logwatch-7.3-init.patch ---
--- logwatch-7.3/scripts/services/init.pom	2005-02-24 18:08:04.000000000 +0100
+++ logwatch-7.3/scripts/services/init	2006-09-26 10:06:33.000000000 +0200
@@ -28,6 +28,10 @@
 	   # Look for telinit executions
 	   chomp ($ThisLine);
 	   $ReExecInit++;
+   }   
+   elsif ( $ThisLine =~ /Re-reading inittab/) {
+      chomp($ThisLine);
+      $Rereading++;
    }
    else {
       # report any unmatched entries
@@ -41,7 +45,11 @@
    }
 }
 if ($ReExecInit) {
-	print "\n\nRe-execs of init: $ReExecInit times\n";
+	print "\n\nRe-execs of init: $ReExecInit time(s)\n";
+}
+
+if ($Rereading) {
+        print "\n\nRe-reading of inittab: $Rereading time(s)\n";
 }
 
 if ($#OtherList >= 0) {

logwatch-7.3-named.patch:
 named |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE logwatch-7.3-named.patch ---
--- logwatch-7.3/scripts/services/named.pom	2006-03-20 21:42:57.000000000 +0100
+++ logwatch-7.3/scripts/services/named	2006-09-12 10:33:40.000000000 +0200
@@ -211,7 +211,7 @@
    } elsif ( ($ThisLine =~ /FORMERR resolving '[^ ]+: [0-9.#]+/) ) {
       chomp($ThisLine);
       $FormErr{$ThisLine}++;
-   } elsif ( ($ThisLine =~ /found 1 CPU, using 1 worker thread/) ) {
+   } elsif ( ($ThisLine =~ /found [0-9]* CPU(s)?, using [0-9]* worker thread(s)?/) ) {
       chomp($ThisLine);
       $StartLog{$ThisLine}++;
    } else {

logwatch-7.3-named2.patch:
 named |   14 ++++++++++++++
 1 files changed, 14 insertions(+)

--- NEW FILE logwatch-7.3-named2.patch ---
--- logwatch-7.3/scripts/services/named.pom	2006-09-13 14:29:16.000000000 +0200
+++ logwatch-7.3/scripts/services/named	2006-09-13 14:25:17.000000000 +0200
@@ -214,6 +214,9 @@
    } elsif ( ($ThisLine =~ /found [0-9]* CPU(s)?, using [0-9]* worker thread(s)?/) ) {
       chomp($ThisLine);
       $StartLog{$ThisLine}++;
+   } elsif ( (($File,$Line,$Problem) = ($ThisLine =~ /\/etc\/(rndc.key|named.conf):([0-9]+): (unknown option '[^ ]*')/)) or
+	     (($File,$Line,$Problem) = ($ThisLine =~ /\/etc\/(rndc.key|named.conf):([0-9]+): ('[^ ]' expected near end of file)/)) ) {
+       $ConfProb{$File}{"$Line,$Problem"}++;
    } else {
       # Report any unmatched entries...
       # remove PID from named messages
@@ -385,6 +388,17 @@
    }
 }
 
+if (keys %ConfProb) {
+   print "\n Errors in configuration files\n";
+   foreach $File (sort keys %ConfProb) {
+      print "   file " . $File . "\n";
+      foreach (keys %{$ConfProb{$File}}) {
+         ($Line,$Problem) = split ",";
+         print "      " . $File . ":" . "$Line" . ": " . $Problem . ": " . $ConfProb{$File}{"$Line,$Problem"} . " Time(s)\n";
+      }
+   }
+}
+
 if (($Detail >= 5) and (keys %DisallClient)) {
    print "\n Query form disallowed client:\n";
    foreach $ThisOne (keys %DisallClient) {

logwatch-7.3-pam_unix2.patch:
 pam_unix |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

--- NEW FILE logwatch-7.3-pam_unix2.patch ---
--- logwatch-7.3/scripts/services/pam_unix.pom	2006-09-12 11:48:24.000000000 +0200
+++ logwatch-7.3/scripts/services/pam_unix	2006-09-12 13:40:29.000000000 +0200
@@ -142,7 +142,7 @@
       } else {
          $data{$service}{'Unknown Entries'}{$line}++;
       }
-   } elsif (($service eq 'su') or ($service eq 'sudo')) {
+   } elsif (($service eq 'su') or ($service eq 'sudo') or ($service eq 'su-l')) {
       if ($line =~ s/^authentication failure; logname=(.*) uid=(\d+) .*user=(\S*)$/$1($2) -> $3/) {
          $data{$service}{'Authentication Failures'}{$line}++;
       } elsif ($line =~ /session closed for user/) {
@@ -225,7 +225,7 @@
       } else {
          $data{$service}{'Unknown Entries'}{$line}++;
       }
-   } elsif ($service eq 'xscreensaver') {
+   } elsif (($service eq 'xscreensaver') || ($service eq 'gnome-screensaver') || ($service eq 'kscreensaver')) {
       if ($line =~ s/^authentication failure; .*uid=(\d+) euid=(\d+) tty=(.+) ruser= rhost=  user=(.+)$/$4($1,$2) on display $3/) {
          $data{$service}{'Authentication Failures'}{$line}++;
       }

logwatch-7.3-secure2.patch:
 secure |   77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------
 1 files changed, 67 insertions(+), 10 deletions(-)

--- NEW FILE logwatch-7.3-secure2.patch ---
--- logwatch-7.3/scripts/services/secure.pom	2006-11-16 08:42:38.000000000 +0100
+++ logwatch-7.3/scripts/services/secure	2006-11-16 09:06:45.000000000 +0100
@@ -132,14 +132,14 @@
    #Woody - specific, thanks to Michael Stovenour
    if ($ThisLine =~ /^PAM_unix[\[\]0-9]*:/i ) { next; }
 
-   if (
-      ( $ThisLine =~ /pam_succeed_if: requirement "uid < 100" (was|not) met by user /) or
+   if (( $ThisLine =~ /pam_succeed_if(\([a-zA-Z]*:[a-zA-Z]*\))?: requirement \"uid < 100\" (was|not) met by user /) or
       ( $ThisLine =~ /pam_rhosts_auth\[\d+\]: allowed to [^ ]+ as \w+/) or
       ( $ThisLine =~ /^(.*)\(pam_unix\)/) or
       ( $ThisLine =~ /pam_unix\(.*:.*\)/) or
       ( $ThisLine =~ m/^[^ ]+\[\d+\]: connect from localhost$/ ) or
       ( $ThisLine =~ /^\/usr\/bin\/sudo:/) or
       ( $ThisLine =~ /^halt:/) or
+      ( $ThisLine =~ /^com.apple.SecurityServer: Succeeded authorizing right system.(preferences|login.console|login.tty|login.done|privilege.admin) by process/) or
       ( $ThisLine =~ /^pam_xauth\[\d+\]: call_xauth: child returned \d/) or
       ( $ThisLine =~ /^su\[\d+\]: pam_authenticate: Authentication failure/) or
       ( $ThisLine =~ /^passwd\[\d+\]:/) or
@@ -148,6 +148,9 @@
       ( $ThisLine =~ /^su: pam_unix2: session (started|finished) for user [^ ]+, service [^ ]+/) or
       ( $ThisLine =~ /^xinetd\[\d+\]: USERID: ([^ ]+) (.+)$/ ) or
       ( $ThisLine =~ /warning: can.t get client address: Connection refused/) or
+      ( $ThisLine =~ /Showing Login Window/) or
+      ( $ThisLine =~ /User Authenticated: continue login process/) or
+      ( $ThisLine =~ /com.apple.SecurityServer: Entering service/) or
       ( $ThisLine =~ /^(xinetd|xinetd-ipv6)\[\d+\]: EXIT: /) or
       ( $ThisLine =~ /^crond\(\w+\)\[\d+\]: session /) or
       ( $ThisLine =~ /^sshd\(\w+\)\[\d+\]: authentication failure/) or
@@ -155,7 +158,6 @@
       ( $ThisLine =~ /^sshd\(\w+\)\[\d+\]: session /) or
       ( $ThisLine =~ /^ipop3d\[\d+\]:/) or
       ( $ThisLine =~ /^su\[\d+\]: [+-] .+/) or
-      ( $ThisLine =~ /^su\[\d+\]: Successful su for \S+ by \S+/) or
       ( $ThisLine =~ /^pam_limits\[\d+\]/ ) or
       ( $ThisLine =~ /^kcheckpass(\[\d+\]|):/ ) or   # done in pam_unix
       ( $ThisLine =~ /^cyrus\/lmtpd\[\d+\]: [^ ]+ server step [12]/ ) or
@@ -164,7 +166,13 @@
       ( $ThisLine =~ /pam_timestamp\(?[^ ]*\)?: timestamp file `([^ ]+)' is only \d+ seconds old, allowing access to ([^ ]+) for user ([^ ]+)/) or
       ( $ThisLine =~ /pam_timestamp\(?[^ ]*\)?: timestamp file `([^ ]+)'/) or # has unacceptable age \(\d+ seconds\), disallowing access to ([^ ]+) for user ([^ ]+)/) or
       ( $ThisLine =~ /userhelper\[\d+\]: running '([^ ]+)' with [^ ]+ context/) or
-      ( $ThisLine =~ /pam_timestamp\(.*:session\): updated timestamp file `\/var\/run\/sudo.*'/)   
+      ( $ThisLine =~ /pam_timestamp\(.*:session\): updated timestamp file `\/var\/run\/sudo.*'/) or
+      ( $ThisLine =~ /[^ ]*: pam_keyinit(.*:.*): Unable to change GID to [0-9]* temporarily/) or 
+      ( $ThisLine =~ /password check failed for user \([a-zA-Z]*\)/) or
+      ( $ThisLine =~ /PAM pam_set_item: attempt to set conv\(\) to NULL/) or
+      ( $ThisLine =~ /PAM pam_get_item: nowhere to place requested item/) or
+      ( $ThisLine =~ /pam_succeed_if\(.*:.*\): error retrieving information about user [a-zA-Z]*/ ) or
+      ( $ThisLine =~ /logfile turned over/) # newsyslog on OpenBSD
    ) {
       # Ignore these entries
    } elsif ($ThisLine =~ /^spop3d/ || $ThisLine =~ /^pop\(\w+\)\[\d+\]:/) {
@@ -266,8 +274,12 @@
       $Error{$Service}{$Err}++;
    } elsif ( $ThisLine =~ /^login(\[\d+\])*: ROOT LOGIN\s+(ON|on)\s+`?tty[0-9]+/) {
       $RootLoginTTY++
+   } elsif ( $ThisLine =~ /^com.apple.SecurityServer: authinternal authenticated user root .*/) {
+      $RootLoginTTY++
    } elsif ( (undef,$User) = ($ThisLine =~ /^login: LOGIN ON (tty|pts\/)[0-9]+ BY ([^ ]+)/ )) {
       $UserLogin{$User}++;
+   } elsif ( ($User,undef) = ($ThisLine =~ /^com.apple.SecurityServer: authinternal authenticated user ([^ ]+) .*/ )) {
+      $UserLogin{$User}++;
    } elsif ( $ThisLine =~ s/^userdel\[\d+\]: delete user `(.+)'/$1/ ) {
       $DeletedUsers .= "   $ThisLine\n";
    } elsif ( $ThisLine =~ s/^(?:useradd|adduser)\[\d+\]: new user: name=(.+), (?:uid|UID)=(\d+).*$/$1 ($2)/ ) {
@@ -344,10 +356,12 @@
       $UnknownUser{$User}++;
    } elsif ($ThisLine =~ /^pam_pwdfile\[\d+\]: password too short or NULL/) {
       $pwd_file_too_short++;
-   } elsif ( ($User,$Su) = ($ThisLine =~ /^su: ([^ ]+) to ([^ ]+) on \/dev\/ttyp([0-9]+)/) ) {
+   } elsif ( ($User,$Su) = ($ThisLine =~ /^su: ([^ ]+) to ([^ ]+) on \/dev\/ttyp([0-9a-z]+)/) ) {
       $Su_User{$User}{$Su}++; 
    } elsif ( ($Su,$User) = ($ThisLine =~ /^su: \(to ([^ ]+)\) ([^ ]+) on (?:none|\/dev\/(pts\/|ttyp)([0-9]+))/) ) {
       $Su_User{$User}{$Su}++;
+   } elsif ( ($Su,$User) = ($ThisLine =~ /^su\[\d+\]: Successful su for (\S+) by (\S+)/) ) {
+      $Su_User{$User}{$Su}++;
    } elsif ($ThisLine =~ /^userhelper\[\d+\]: running '([^']+)' with ([^']+) privileges on behalf of '([^']+)'/) {
       $Executed_app{"$1,$2,$3"}++;
    } elsif ( ($User) = $ThisLine =~ /change user `([^']+)' password/) {
@@ -356,9 +370,17 @@
       $cvs_passwd_mismatch{$User}++;       
    } elsif ( ($User,$From,$To) = ($ThisLine =~ /usermod\[[0-9]*\]: change user `([^ ]*)' shell from `([^ ]*)' to `([^ ]*)'/) ) {
       $ChangedShell{"$User,$From,$To"}++;
+   } elsif ( ($Name1,$Name2) = ($ThisLine =~ /usermod\[[0-9]*\]: change user name `([^ ]*)' to `([^ ]*)'/)) {
+      $ChangedUserName{"$Name1,$Name2"}++; 
+   } elsif (($Name,$GID) = ($ThisLine =~ /change GID for `([^ ]*)' to ([0-9]*)/)) {
+      $ChangedGID{"$Name,$GID"}++;
+   } elsif (($Name,$UID1,$UID2) = ($ThisLine =~ /change user `([^ ]*)' UID from `([0-9]*)' to `([^ ]*)'/)) {
+      $ChangedUID{"$Name,$UID1,$UID2"}++;
+   } elsif (($Module,$Service) = ($ThisLine =~ /Deprecated (pam_[^ ]*) module called from service "([^ ]*)"/)) {
+      $DeprecateModule{"$Module,$Service"}++;
    } else {
       # Unmatched entries...
-      push @OtherList, "$ThisLine\n";
+      $OtherList{$ThisLine}++;
    }
 }
 
@@ -640,6 +662,22 @@
    }
 }
 
+if (keys %ChangedUserName) {
+   print "\nChanged users names:\n";
+   foreach (keys %ChangedUserName) {
+     ($Name1,$Name2) = split ",";
+     print "   User " . $Name1 . " change name to " . $Name2 . $ChangedUserName . "\n";
+   }
+}
+
+if (keys %ChangedUID) {
+   print "\nChanged UID:\n";
+   foreach (keys %ChangedUID) {
+     ($Name,$UID1,$UID2) = split ",";
+     print "   User " . $Name . " changed UID form " . $UID1 . " to " . $UID2 . "\n";
+   }
+}
+
 if (keys %ChangedShell) {
    print "\nChanged users default login shell: \n";
    foreach (keys %ChangedShell) {
@@ -649,17 +687,36 @@
 
 }
 
+if (keys %ChangedGID) {
+   print "\nChanged GID:\n";
+   foreach (keys %ChangedGID) {
+      ($Name,$GID) = split ",";
+       print "   Group " . $Name . " change GID to " . $GID . "\n";
+   }
+}
+
 if (keys %cvs_passwd_mismatch) {
-   print "\n cvs:";
+   print "\ncvs:";
    print "\n   Authentication Failures:\n";
    foreach $User (keys %cvs_passwd_mismatch) {
-     print "      $User : $cvs_passwd_mismatch{$User} Time(s)\n";
+      print "      $User : $cvs_passwd_mismatch{$User} Time(s)\n";
    }
 }
 
-if ($#OtherList >= 0) {
+if (keys %DeprecateModule){
+   print "\nDeprecated pam module:\n";
+   foreach (keys %DeprecateModule) {
+      ($Module,$Service) = split ",";
+      print "   deprecated module $Module called from service $Service: " . $DeprecateModule{"$Module,$Service"} . " Time(s)\n";
+   }
+}
+
+
+if (keys %OtherList) {
    print "\n**Unmatched Entries**\n";
-   print @OtherList;
+   foreach $line (sort {$a cmp $b} keys %OtherList) {
+      print "   $line: $OtherList{$line} Time(s)\n";
+   }
 }
 
 exit(0);

logwatch-7.3-smart.patch:
 smartd |   23 ++++++++++++++++++-----
 1 files changed, 18 insertions(+), 5 deletions(-)

--- NEW FILE logwatch-7.3-smart.patch ---
--- logwatch-7.3/scripts/services/smartd.pom	2006-03-20 21:42:57.000000000 +0100
+++ logwatch-7.3/scripts/services/smartd	2006-09-12 11:46:50.000000000 +0200
@@ -21,6 +21,8 @@
 my %SelfTest = ();
 my %Failed = ();
 my @OtherList = ();
+my $DLine = 0;
+my %UnavailableDev = ();
 
 my $Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
 my $IgnoreUnmatched = $ENV{'smartd_ignore_unmatched'} || 0;
@@ -72,7 +74,9 @@
           || ($ThisLine =~ /enabled SMART Automatic Offline Testing/)
 	  || ($ThisLine =~ /smartd startup succeeded/)
 	  || ($ThisLine =~ /Unable to register device (.*) \(no Directive -d removable\). Exiting/)
-	  || ($ThisLine =~ /Device (.*), SATA disks accessed via libata are not currently supported by smartmontools./) )
+	  || ($ThisLine =~ /Device (.*), SATA disks accessed via libata are not currently supported by smartmontools./) 
+	  || ($ThisLine =~ /Device: (.*), IE \(SMART\) not enabled, skip device Try '.*' to turn on SMART features/) 
+	  || ($ThisLine =~ /Device: (.*), Bad IEC (SMART) mode page, err=-5, skip device/))
    {
        # ignore
 
@@ -105,8 +109,10 @@
       $StartupFailed++;
    } elsif ( ($ThisLine =~ /smartd shutdown failed/ ) ) {
       $ShutdownFailed++;
-   } elsif ( my ($Device) = ($ThisLine =~ /Unable to register SCSI device (.*) at line 1 of file \/etc\/smartd.conf/) ) {
-      $UnableToReg{$Device}++  
+   } elsif ( my ($Device,$DLine) = ($ThisLine =~ /Unable to register SCSI device (.*) at line ([0-9]*) of file \/etc\/smartd.conf/) ) {
+      $UnableToReg{"$Device,$DLine"}++  
+   } elsif ( ($Device) = ($ThisLine =~ /Device ([^ ]+) not available/)) {
+      $UnavailableDev{$Device}++;
    } else {
       # Report any unmatched entries...
       push @OtherList,"$ThisLine\n";
@@ -229,11 +235,18 @@
 
 if ( (keys %UnableToReg) ) {
    print "\n Wrong configuration for devices:\n";
-   foreach my $Device (sort keys %UnableToReg) {
-      print "   " . $Device .": ". $UnableToReg{$Device} . " Time(s)\n";
+   foreach (sort keys %UnableToReg) {
+      ($Device,$DLine) = split ",";
+      print "   " . $Device . (" (line ") . $DLine . ") : ". $UnableToReg{"$Device,$DLine"} . " Time(s)\n";
    }
 }
 
+if (%UnavailableDev) {
+   print "\nUnavailable device:\n";
+   foreach my $Device (sort keys %UnavailableDev) {
+      print "   Device " . $Device . " : " . $UnavailableDev{$Device} . " Time(s)\n";
+   }
+}
 
 if (($#OtherList >= 0) and (not $IgnoreUnmatched)){
    print "\n**Unmatched Entries**\n";

logwatch-7.3-sshd2.patch:
 sshd |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)

--- NEW FILE logwatch-7.3-sshd2.patch ---
--- logwatch-7.3/scripts/services/sshd.pom	2006-09-12 14:56:00.000000000 +0200
+++ logwatch-7.3/scripts/services/sshd	2006-09-13 09:29:06.000000000 +0200
@@ -210,7 +210,8 @@
        # failed login entry...
        ($ThisLine =~ /^input_userauth_request: (illegal|invalid) user (.*)$/ ) or
        ($ThisLine =~ m/^(Illegal|Invalid) user (.*) from ([^ ]+)/ ) or
-       ($ThisLine =~ /pam_krb5: authentication succeeds for `([^ ]*)'/)
+       ($ThisLine =~ /pam_krb5: authentication succeeds for `([^ ]*)'/) or
+       ( $ThisLine =~ /pam_succeed_if\(.*:.*\): error retrieving information about user [a-zA-Z]*/ )           
    ) {
       # Ignore these
    } elsif ( my ($Method,$User,$Host,$Port) = ($ThisLine =~ /^Accepted (\S+) for (\S+) from ([\d\.:a-f]+) port (\d+)/) ) {


Index: logwatch.spec
===================================================================
RCS file: /cvs/dist/rpms/logwatch/FC-6/logwatch.spec,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- logwatch.spec	29 Aug 2006 08:08:45 -0000	1.43
+++ logwatch.spec	16 Nov 2006 08:51:59 -0000	1.44
@@ -1,7 +1,7 @@
 Summary: A log file analysis program.
 Name: logwatch
 Version: 7.3
-Release: 5
+Release: 6%{?dist} 
 License: MIT
 Group: Applications/System
 URL: http://www.logwatch.org/
@@ -15,6 +15,16 @@
 Patch8: logwatch-7.3-sshd.patch
 Patch9: logwatch-7.3-iptables.patch
 Patch10: logwatch-7.3-amavis.patch
+Patch11: logwatch-7.3-named.patch	
+Patch12: logwatch-7.3-pam_unix2.patch
+Patch13: logwatch-7.3-secure2.patch
+Patch14: logwatch-7.3-smart.patch
+Patch15: logwatch-7.3-automount.patch
+Patch16: logwatch-7.3-audit2.patch
+Patch17: logwatch-7.3-named2.patch
+Patch18: logwatch-7.3-init.patch
+Patch19: logwatch-7.3-sshd2.patch
+
 
 Requires: textutils sh-utils grep mailx
 BuildRoot: %{_tmppath}/logwatch-build
@@ -37,6 +47,15 @@
 %patch8 -p1
 %patch9 -p1
 %patch10 -p1
+%patch11 -p1
+%patch12 -p1
+%patch13 -p1
+%patch14 -p1
+%patch15 -p1	
+%patch16 -p1
+%patch17 -p1
+%patch18 -p1
+%patch19 -p1
 
 %install
 
@@ -138,6 +157,10 @@
 %doc License project/CHANGES project/TODO
 
 %changelog
+* Thu Nov 16 2006 Ivana Varekova <varekova at redhat.com> 7.3-6
+- added named, pam_unix, secure, smart, automount, 
+  audit, init and sshd patches
+
 * Tue Aug 29 2006 Ivana Varekova <varekova at redhat.com> 7.3-5
 - fix amavis problem #204432 
 




More information about the fedora-cvs-commits mailing list