File: up2date

package info (click to toggle)
logwatch 5.2.2-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,112 kB
  • ctags: 42
  • sloc: perl: 9,032; sh: 65; makefile: 54
file content (77 lines) | stat: -rwxr-xr-x 2,630 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/perl -w
##########################################################################
# $Id: up2date,v 1.9 2003/12/15 18:09:23 kirk 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 =~ /^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 =~ /^logging into up2date server$/ ) or
        ( $ThisLine =~ /^A socket error occurred/ ) or
        ( $ThisLine =~ /^new up2date run started/ ) or
        ( $ThisLine =~ /^A protocol error occurred/ ) or
        ( $ThisLine =~ /^Error communicating with server\.  The message was:$/ ) or
        ( $ThisLine =~ /^deleting \/var\/spool\/up2date\// ) ) { 
      # 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 et