|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /usr/share/logwatch/scripts/services/ |
Upload File : |
##########################################################################
# $Id: up2date,v 1.16 2006/01/10 17:45:12 bjorn Exp $
##########################################################################
########################################################
# This was written and is maintained by:
# Eric Moret <eric.moret@epita.fr>
#
# Please send all comments, suggestions, bug reports,
# etc, to eric.moret@epita.fr.
########################################################
$Debug = $ENV{'LOGWATCH_DEBUG'} || 0;
#$Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
if ( $Debug >= 5 ) {
print STDERR "\n\nDEBUG: Inside up2date Filter \n\n";
$DebugCounter = 1;
}
while (defined($ThisLine = <STDIN>)) {
if ( $Debug >= 5 ) {
print STDERR "DEBUG($DebugCounter): $ThisLine";
$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
( $ThisLine =~ /^getAdvisoryInfo for / ) or
( $ThisLine =~ /^logging into up2date server$/ ) or
( $ThisLine =~ /^A socket error occurred/ ) or
( $ThisLine =~ /^new up2date run started/ ) or
( $ThisLine =~ /^Creating rollback packages\.\.\./ ) or
( $ThisLine =~ /^Updating transaction list/ ) or
( $ThisLine =~ /^A protocol error occurred/ ) or
( $ThisLine =~ /^Error communicating with server\.\s+The message was:$/ ) or
( $ThisLine =~ /^Updating package profile/) or
( $ThisLine =~ /^Unable to import repomd/) or
( $ThisLine =~ /^deleting \/var\/spool\/up2date\// ) or
( $ThisLine =~ /^solving dep for: \[('.*')*\]/) or
( $ThisLine =~ /^Adding [^ ]* to bootloader config/) or
( $ThisLine =~ /^Modifying bootloader config to include the new kernel info/) or
( $ThisLine =~ /^Running elilo with the new configuration/) ) {
# We don't care about these
} elsif ( $ThisLine =~ s/^installing packages: ([^ ]+)/$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}++;
} else {
# Report any unmatched entries...
push @OtherList,$ThisLine;
}
}
if (keys %PackageInstalled) {
print "\nPackage Installed:\n";
foreach $ThisOne (keys %PackageInstalled) {
print " " . $ThisOne;
}
}
if (keys %PackageAddedToProfile) {
print "\nPackage Added To Profile:\n";
foreach $ThisOne (keys %PackageAddedToProfile) {
print " " . $ThisOne;
}
}
if (keys %PackageRemovedFromProfile) {
print "\nPackage Removed From Profile:\n";
foreach $ThisOne (keys %PackageRemovedFromProfile) {
print " ". $ThisOne;
}
}
if ($#OtherList >= 0) {
print "\n**Unmatched Entries**\n";
print @OtherList;
}
exit(0);
# vi: shiftwidth=3 tabstop=3 syntax=perl et