Diff for /loncom/loncron between versions 1.96 and 1.99

version 1.96, 2013/02/02 00:22:30 version 1.99, 2013/05/29 18:10:54
Line 271  sub log_machine_info { Line 271  sub log_machine_info {
   
     &log($fh,"<h3>distprobe</h3>");      &log($fh,"<h3>distprobe</h3>");
     &log($fh,"<pre>");      &log($fh,"<pre>");
     &get_distro($perlvar{'lonDaemons'},$fh);      &log($fh,&encode_entities(&LONCAPA::distro(),'<>&"'));
     &log($fh,"</pre>");      &log($fh,"</pre>");
   
     &errout($fh);      &errout($fh);
Line 695  sub log_simplestatus { Line 695  sub log_simplestatus {
   
 sub write_loncaparevs {  sub write_loncaparevs {
     print "Retrieving LON-CAPA version information\n";      print "Retrieving LON-CAPA version information\n";
     if (open(my $fh,">$perlvar{'lonTabDir'}/loncaparevs.tab")) {      my %hostname = &Apache::lonnet::all_hostnames();
         my %hostname = &Apache::lonnet::all_hostnames();      my $output;
         foreach my $id (sort(keys(%hostname))) {      foreach my $id (sort(keys(%hostname))) {
             if ($id ne '') {          if ($id ne '') {
                 my $loncaparev;              my $loncaparev;
               eval {
                   local $SIG{ ALRM } = sub { die "TIMEOUT" };
                   alarm(10);
                   $loncaparev =
                       &Apache::lonnet::get_server_loncaparev('',$id,1,'loncron');
                   alarm(0);
               };
               if ($@ && $@ =~ m/TIMEOUT/) {
                   print "time out while contacting lonHost: $id for version\n";   
               }
               if ($loncaparev =~ /^[\w.\-]+$/) {
                   $output .= $id.':'.$loncaparev."\n";
               }
           }
       }
       if ($output) {
           if (open(my $fh,">$perlvar{'lonTabDir'}/loncaparevs.tab")) {
               print $fh $output;
               close($fh);
               &Apache::lonnet::load_loncaparevs();
           }
       }
       return;
   }
   
   sub write_serverhomeIDs {
       print "Retrieving LON-CAPA lonHostID information\n";
       my %name_to_host = &Apache::lonnet::all_names();
       my $output;
       foreach my $name (sort(keys(%name_to_host))) {
           if ($name ne '') {
               if (ref($name_to_host{$name}) eq 'ARRAY') {
                   my $serverhomeID;
                 eval {                  eval {
                     local $SIG{ ALRM } = sub { die "TIMEOUT" };                      local $SIG{ ALRM } = sub { die "TIMEOUT" };
                     alarm(10);                      alarm(10);
                     $loncaparev =                      $serverhomeID = 
                         &Apache::lonnet::get_server_loncaparev('',$id,1,'loncron');                          &Apache::lonnet::get_server_homeID($name,1,'loncron');
                     alarm(0);                      alarm(0);
                 };                  };
                 if ($@ && $@ =~ m/TIMEOUT/) {                  if ($@ && $@ =~ m/TIMEOUT/) {
                     print "time out while contacting lonHost: $id for version\n";                         print "Time out while contacting server: $name\n"; 
                 }                  }
                 if ($loncaparev =~ /^[\w.\-]+$/) {                  if ($serverhomeID ne '') {
                     print $fh $id.':'.$loncaparev."\n";                      $output .= $name.':'.$serverhomeID."\n";
                   } else {
                       $output .= $name.':'.$name_to_host{$name}->[0]."\n";
                 }                  }
             }              }
         }          }
         close($fh);  
     }      }
     return;      if ($output) {
 }          if (open(my $fh,">$perlvar{'lonTabDir'}/serverhomeIDs.tab")) {
               print $fh $output;
 sub write_serverhomeIDs {              close($fh);
     print "Retrieving LON-CAPA lonHostID information\n";              &Apache::lonnet::load_serverhomeIDs();
     if (open(my $fh,">$perlvar{'lonTabDir'}/serverhomeIDs.tab")) {  
         my %name_to_host = &Apache::lonnet::all_names();  
         foreach my $name (sort(keys(%name_to_host))) {  
             if ($name ne '') {  
                 if (ref($name_to_host{$name}) eq 'ARRAY') {  
                     my $serverhomeID;  
                     eval {  
                         local $SIG{ ALRM } = sub { die "TIMEOUT" };  
                         alarm(10);  
                         $serverhomeID =   
                             &Apache::lonnet::get_server_homeID($name,1,'loncron');  
                         alarm(0);  
                     };  
                     if ($@ && $@ =~ m/TIMEOUT/) {  
                         print "Time out while contacting server: $name\n";   
                     }  
                     if ($serverhomeID ne '') {  
                         print $fh $name.':'.$serverhomeID."\n";  
                     } else {  
                         print $fh $name.':'.$name_to_host{$name}->[0]."\n";  
                     }  
                 }  
             }  
         }          }
         close($fh);  
     }      }
     return;      return;
 }  }
   
 sub write_checksums {  sub write_checksums {
     my ($perlvar) = @_;      my $distro = &LONCAPA::distro();
     return unless (ref($perlvar) eq 'HASH');  
     my $distro = &get_distro($perlvar->{'lonDaemons'});  
     if ($distro) {      if ($distro) {
         print "Retrieving file version and checksumming.\n";          print "Retrieving file version and checksumming.\n";
           my $numchksums = 0;
         my ($chksumsref,$versionsref) =          my ($chksumsref,$versionsref) =
             &LONCAPA::Checksumming::get_checksums($distro,$perlvar->{'lonDaemons'},              &LONCAPA::Checksumming::get_checksums($distro,$perlvar{'lonDaemons'},
                                                   $perlvar->{'lonLib'},                                                    $perlvar{'lonLib'},
                                                   $perlvar->{'lonIncludes'},                                                    $perlvar{'lonIncludes'},
                                                   $perlvar->{'lonTabDir'});                                                    $perlvar{'lonTabDir'});
         if (ref($chksumsref) eq 'HASH') {          if (ref($chksumsref) eq 'HASH') {
             $numchksums = scalar(keys(%{$chksumsref}));              $numchksums = scalar(keys(%{$chksumsref}));
         }          }
Line 769  sub write_checksums { Line 778  sub write_checksums {
     } else {      } else {
         print "File version retrieval and checksumming skipped - could not determine Linux distro.\n";           print "File version retrieval and checksumming skipped - could not determine Linux distro.\n"; 
     }      }
     return'      return;
 }  }
   
 sub send_mail {  sub send_mail {
Line 789  sub send_mail { Line 798  sub send_mail {
     }      }
 }  }
   
 sub get_distro {  
     my ($dir,$fh) = @_;  
     my $distro;  
     if (open(my $disth,"$dir/distprobe |")) {  
         while (my $line=<$disth>) {  
             if ($fh) {  
                 &log($fh,&encode_entities($line,'<>&"'));  
             }  
             $distro .= $line;  
         }  
         close($disth);  
     }  
     return $distro;  
 }  
   
 sub usage {  sub usage {
     print(<<USAGE);      print(<<USAGE);
 loncron - housekeeping program that checks up on various parts of Lon-CAPA  loncron - housekeeping program that checks up on various parts of Lon-CAPA
Line 937  sub main () { Line 931  sub main () {
  &log_simplestatus();   &log_simplestatus();
         &write_loncaparevs();          &write_loncaparevs();
         &write_serverhomeIDs();          &write_serverhomeIDs();
  &write_checksums(\%perlvar);   &write_checksums();
  if ($totalcount>200 && !$noemail) { &send_mail(); }   if ($totalcount>200 && !$noemail) { &send_mail(); }
     }      }
 }  }

Removed from v.1.96  
changed lines
  Added in v.1.99


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>