X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=aptcheck%2Faptcheck.pl;h=3866de92cb83b6e87350accd93fcdfdb2a565bdc;hb=415a7b3518c55816ce7e8be5da5c7593d8333abb;hp=03680ce66af3cb20951574217f4aa3bbcfd02310;hpb=369b6951a393e5a821121dff6b16e31485819df7;p=git-tools-moved-to-github.git diff --git a/aptcheck/aptcheck.pl b/aptcheck/aptcheck.pl index 03680ce..3866de9 100755 --- a/aptcheck/aptcheck.pl +++ b/aptcheck/aptcheck.pl @@ -76,7 +76,7 @@ for my $pline ( split("\n",$restplines) ) { print "found $pname, first version $pver\n" if $debug>1; } else { my $bver = $restrpkgs{$pname}; - `dpkg --compare-versions $bver lt $pver`; + `dpkg --compare-versions "$bver" lt "$pver" `; if ( ! $? ) { print "found $pname, better version $pver (better than $bver)\n" if $debug>1; @@ -91,8 +91,8 @@ for my $pline ( split("\n",$restplines) ) { } } +print "got " . scalar(keys(%restrpkgs)) . " restricted packages\n" if $debug; if ( $debug >1 ) { - print "got " . scalar(keys(%restrpkgs)) . " restricted packages\n"; for $pname ( sort (keys(%restrpkgs)) ) { print " $pname " . $restrpkgs{$pname} . "\n"; } @@ -111,6 +111,31 @@ my $sectot = 0; my $owntot = 0; my $mantot = 0; my $normtot = 0; +my %updlinks; + +# Pending modification dates +my %olddates; # Read in from the file +my %newdates; # To be written in the new version of the file +my $datefilename = "aptcheck.data"; +my $dateoldfilename = "aptcheck.old"; +my $thisdate = "*"; # indicates really old stuff +if ( -f $datefilename ) { + print "Reading dates from $datefilename\n" if $debug; + open F, $datefilename or die "Could not open date file $datefilename: $!"; + while () { + chop(); + my ($pkg, $date) = split; + next unless $pkg; # skip empty lines + $olddates{$pkg} = $date; + print "Date for '$pkg' is '$date' \n" if $debug; + } + close F; + $thisdate = `date +%F`; + chomp($thisdate); +} else { + print "No datefile $datefilename found, starting from scratch\n"; +} + my $table = "\n"; @@ -124,6 +149,7 @@ for my $hline ( split("\n",$hostlist) ) { my $cmd1 = "apt-cache -q policy " . join(" ",sort(keys(%restrpkgs))); my $cmd2 = "apt-get upgrade -s -o 'Debug::NoLocking=true' "; # Note, do not append -qq, we want some output even when nothing to do + print "ssh -q $H \"$cmd1 ; $cmd2 \" 2>/dev/null" if ($debug>1); my $apt = `ssh -q $H "$cmd1 ; $cmd2 " 2>/dev/null`; if ( !$apt ) { $table .= "\n"; @@ -151,7 +177,7 @@ for my $hline ( split("\n",$hostlist) ) { ( $restrinst ne $bver ) ) { # if different, it is a regular apt upgrade, and will be seen # later. AND we want to have a different version in our repo - `dpkg --compare-versions $bver lt $restrinst`; + `dpkg --compare-versions "$bver" lt "$restrinst" `; if ( $? ) { # It was not a downgrade # manual packages may be ahead of the repo! $mantot++; @@ -163,6 +189,13 @@ for my $hline ( split("\n",$hostlist) ) { $det .= ""; $det .= ""; $det .= ""; + my $datekey = "$H:$restrname"; + if ( $olddates{$datekey} ) { + $newdates{$datekey} = $olddates{$datekey}; + } else { + $newdates{$datekey} = $thisdate; + } + $det .= ""; $det .= "\n"; my $key = "$restrname"; if ( !$summary{$key} ) { @@ -209,7 +242,15 @@ for my $hline ( split("\n",$hostlist) ) { $det .= " "; $det .= " "; $det .= " "; + my $datekey = "$H:$pkg"; + if ( $olddates{$datekey} ) { + $newdates{$datekey} = $olddates{$datekey}; + } else { + $newdates{$datekey} = $thisdate; + } + $det .= ""; $det .= "\n"; + } $table .= "\n"; $table .= "\n"; $table .= "\n" @@ -237,6 +279,16 @@ for my $hline ( split("\n",$hostlist) ) { } $table .= "
 
  $restrname (M)". strdiff($bver,$restrinst)."". strdiff($restrinst,$bver)."" . $newdates{$datekey} . "
$cur$new" . $newdates{$datekey} . "
 
$H  \n"; @@ -227,6 +268,7 @@ for my $hline ( split("\n",$hostlist) ) { # Mostly because the host names would not make proper WikiWords $updlink =~ s/Bugzilla3Updates/BugzillaUpdates/; $updlink =~ s/Opencontent-solrUpdates/OpenContentSolrUpdates/; + $updlinks{$H} = $updlink; $table .= " Upd"; $table .= "
$hostcomments{$H}
\n"; +# Save the date file +`mv -f $datefilename $dateoldfilename`; +open F, ">$datefilename" or die "Could not open date file $datefilename for writing"; +for my $k (keys(%newdates) ) { + print F "$k " . $newdates{$k}. "\n"; + print "date for '$k' '" . $newdates{$k}. "'\n" if $debug; +} +close F + or die "Could not close date file $datefilename: $!"; + # Page header my $outfile = "/tmp/aptcheck.html"; open F, ">$outfile" @@ -246,7 +298,7 @@ print F "Apt upgrade status\n"; print F "\n"; print F "

Apt package status

\n"; print F "" . ( $sectot + $owntot + $mantot + $normtot ) . - " packages pending, including $sectot security \n"; + " packages pending ($sectot critical) \n"; print F "

Debug run, many hosts missing!

\n" if $debug; @@ -264,7 +316,8 @@ if ( $sectot ) { " / " . scalar(keys(%secpkgs)) . " / $sectot \n" ; print F ""; for my $HH ( sort(keys(%sechosts)) ) { - print F "$HH "; + my $upd = $updlinks{$HH} || "#" ; + print F "$HH, "; } print F ""; print F ""; @@ -279,7 +332,9 @@ if ( $owntot ) { " / " . scalar(keys(%ownpkgs)) . " / $owntot \n" ; print F ""; for my $HH ( sort(keys(%ownhosts)) ) { - print F "$HH "; + my $upd = $updlinks{$HH} || "#" ; + print F "$HH, "; + #print F "$HH "; } print F ""; print F ""; @@ -294,7 +349,9 @@ if ( $mantot ) { " / " . scalar(keys(%manpkgs)) . " / $mantot \n" ; print F ""; for my $HH ( sort(keys(%manhosts)) ) { - print F "$HH "; + my $upd = $updlinks{$HH} || "#" ; + print F "$HH, "; + #print F "$HH "; } print F ""; print F ""; @@ -309,7 +366,9 @@ if ( $normtot ) { " / " . scalar(keys(%normpkgs)) . " / $normtot \n" ; print F ""; for my $HH ( sort(keys(%normhosts)) ) { - print F "$HH "; + my $upd = $updlinks{$HH} || "#" ; + print F "$HH, "; + #print F "$HH "; } print F ""; print F ""; @@ -323,20 +382,43 @@ if ( %skiphosts ) { print F "Skipped " . scalar(keys(%skiphosts)) . "\n"; print F ""; for my $HH ( sort(keys(%skiphosts)) ) { - print F "$HH "; + my $upd = $updlinks{$HH} || + $wikilink . ucfirst($HH) . "Updates" . $year; + print F "$HH, "; + #print F "$HH "; } print F "\n"; } -if ( %okhosts ) { +#if ( %okhosts ) { +if ( 1 ) { print F "Ok " . scalar(keys(%okhosts)) . "\n"; print F ""; for my $HH ( sort(keys(%okhosts)) ) { - print F "$HH "; + my $upd = $updlinks{$HH} || "#" ; + print F "$HH, "; + #print F "$HH "; + } + if ( !%okhosts ) { + print F "None at all!"; } print F "\n"; } print F "\n"; +# Graph +#my $secs = 60*60*24 * 7 * 2; # 2 weeks in secods +#my $secs = "1m"; # one month, let nagios do the math +my $secs = "45d"; +print F "

" . + "\n". + " ". + "" . + "
\n"; # The host table print F $table; @@ -359,6 +441,8 @@ for my $P ( sort(keys(%summary)) ) { } print F "\n"; +print F "

Packages marked with * are from the time before started to " . + "track package dates \n"; print F "

Produced " . `date`. " on " . `hostname` . " by " . `whoami` . "
\n";