Description of problem: logwatch's up2date service misses at least one fix for a changed logging line of the yum-rhn-plugin and also I have 2 extensions for an extension requested for yum-rhn-plugin Version-Release number of selected component (if applicable): logwatch-7.3-6.el5 How reproducible: Always Steps to Reproduce: 1. always Actual results: --------------------- up2date Begin ------------------------ **Unmatched Entries** updateLoginInfo() login info ---------------------- up2date End ------------------------- Expected results: Not such message Additional info: Following extension fixes this problem: --- /usr/share/logwatch/scripts/services/up2date.orig 2009-12-16 16:47:04.000000000 +0000 +++ /usr/share/logwatch/scripts/services/up2date 2009-12-16 17:03:31.000000000 +0000 @@ -25,6 +25,7 @@ $DebugCounter++; } if ( ( $ThisLine =~ /^updating login info$/ ) or + ( $ThisLine =~ /^updateLoginInfo\(\) login info$/ ) or ( $ThisLine =~ /^Opening rpmdb in \/var\/lib\/rpm\/ with option .$/ ) or ( $ThisLine =~ /^successfully retrieved authentication token from up2date server$/ ) or ( $ThisLine =~ /^(getA|a)vailablePackageList from network$/ ) or Note: it can be seen that log line had only small changes sometime in the past And please add also following extension for my requested extension of logging of yum-rhn-plugin https://bugzilla.redhat.com/show_bug.cgi?id=548111 @@ -47,10 +48,14 @@ # We don't care about these } elsif ( $ThisLine =~ s/^installing packages: ([^ ]+)/$1/ ) { $PackageInstalled{$ThisLine}++; + } elsif ( $ThisLine =~ s/^Installed: ([^ ]+)/$1/ ) { + $PackageInstalled{$ThisLine}++; } elsif ( $ThisLine =~ s/^Adding packages to package profile: ([^ ]+)/$1/ ) { $PackageAddedToProfile{$ThisLine}++; } elsif ( $ThisLine =~ s/^Removing packages from package profile: ([^ ]+)/$1/ ) { $PackageRemovedFromProfile{$ThisLine}++; + } elsif ( $ThisLine =~ s/^Erased: ([^ ]+)/$1/ ) { + $PackageRemovedFromProfile{$ThisLine}++; } else { # Report any unmatched entries... push @OtherList,$ThisLine;
Created attachment 378794 [details] Extension for /usr/share/logwatch/scripts/services/up2date
Hello, now it seems only the following part needs a fix: **Unmatched Entries** updateLoginInfo() login info
This is a candidate for fastrack.
This request was evaluated by Red Hat Product Management for inclusion in the current release of Red Hat Enterprise Linux. Because the affected component is not scheduled to be updated in the current release, Red Hat is unfortunately unable to address this request at this time. Red Hat invites you to ask your support representative to propose this request, if appropriate and relevant, in the next release of Red Hat Enterprise Linux.
This request was erroneously denied for the current release of Red Hat Enterprise Linux. The error has been fixed and this request has been re-proposed for the current release.
This is also relevant to RHEL6. Could someone please clone this bug?
Cloned as https://bugzilla.redhat.com/show_bug.cgi?id=737247 .
*** This bug has been marked as a duplicate of bug 466455 ***
Do'h, hope it's gonna make into RHEL6 too...