--- loncom/build/Attic/parse.pl 2001/01/16 15:48:45 1.24
+++ loncom/build/Attic/parse.pl 2001/01/18 15:13:09 1.25
@@ -211,6 +211,19 @@ close OUT;
}
elsif ($mode eq "status") {
+ $a=&begin_description_page('status');
+ print $a;
+ $a=&make_rpm_description_block('status');
+ print $a;
+ @directories=&determine_directory_structure('status');
+ $a=&make_directory_structure_description_block(\@directories,'status');
+ print $a;
+ $a=&make_file_type_ownership_and_permissions_description_block('status');
+ print $a;
+ $a=&make_directory_and_file_structure_description_block(\@directories,'status');
+ print $a;
+ $a=&end_description_page('status');
+ print $a;
}
elsif ($mode eq "update") {
}
@@ -939,7 +952,10 @@ sub end_spec_page {
# ------------------------------------------------------- Begin description page
sub begin_description_page {
- my $description=<
+This file is generated dynamically by parse.pl as +part of a status checking process. See http://install.lon-capa.org/ +for more information. +
+END + } return $description; + } # ------------------------------------------------- End description page @@ -980,7 +1024,10 @@ END # ------------------------------------------------- Make RPM description block sub make_rpm_description_block { - my $description=<
+
+Error! A LON-CAPA-base RPM +was never installed on this system! + |
+
++Name : $rpmname +Version : $rpmversion +Vendor : $rpmvendor +Release : $rpmrelease +Build Host : $rpmbuildhost +Group : $rpmgroup +License : $rpmlicense +Summary : $rpmsummary +Description : +$rpmdescription ++ |
@@ -1039,8 +1139,12 @@ END $maxcount=$count if $count>$maxcount; delete $diraccount{$d}; } + if ($mode eq 'status') { + $statusheader="
@@ -1120,7 +1251,8 @@ END
# ------------------------- Make directory and file structure description block
sub make_directory_and_file_structure_description_block {
- my ($dirs)=@_;
+ my ($dirs,$mode)=@_;
+ my $statusheader; my $filestatus;
my $description=<
@@ -1174,8 +1306,14 @@ END
END
}
if (@files) {
+ if ($mode eq 'status') {
+ $statusheader=<Type
File Name
Function
@@ -1219,8 +1357,67 @@ END
$source="$source";
}
}
+ if ($mode eq 'status') {
+ $filestatus='';
+ my $fs;
+ my $listing2=$info{'LOCATION'}{$distribution}{$filesfull[$i]}{'FILES'};
+ my @E=split(/\s+/,$listing2); shift @E;
+ if (@E) {
+ $fs=`find /$filesfull[$i] -prune -printf "\%m\t\%u\t\%g\n" 2>/dev/null | wc -l`; chop $fs;
+ if ($fs!=(@E+0)) {
+ $ecount=(@E+0);
+ $estuff=join(",",@E);
+ $filestatus="ERROR. SOME FILES ARE MISSING ";
+ }
+ $fs=`find /$filesfull[$i] -prune -printf "\%m\t\%u\t\%g\n" 2>/dev/null | sort | uniq | wc -l`; chop $fs;
+ if ($fs!=1) {
+ $filestatus='ERROR. THERE ARE MULTIPLE OWNERSHIPS/PERMISSIONS WHEN ALL THESE FILES SHOULD HAVE THE SAME CONFIGURATION ';
+ }
+ else {
+ $fs=`find /$filesfull[$i] -prune -printf "\%m\t\%u\t\%g\n" 2>/dev/null | sort | uniq`; chop $fs;
+ }
+ }
+ else {
+ $fs=`find /$filesfull[$i] -prune -printf "\%m\t\%u\t\%g" 2>/dev/null`;
+ }
+ my $fsl=`find /$filesfull[$i] -type l -prune -printf "\%m\t\%u\t\%g" 2>/dev/null`;
+ unless ($fs || $filestatus) {
+ $filestatus='MISSING ';
+ }
+ elsif (!$filestatus) {
+
+ $chmod=$info{'OWNERSHIP'}{$category}{'CHMOD'};
+ $chown=$info{'OWNERSHIP'}{$category}{'CHOWN'};
+ $devchmod=$info{'DEVOWNERSHIP'}{$category}{'CHMOD'};
+ $devchown=$info{'DEVOWNERSHIP'}{$category}{'CHOWN'};
+
+ my @fss=split(/\t/,$fs);
+ my $fssz=$fss[0];
+ $fssz="0" . $fss[0] if length($fss[0])<4;
+ $fss[0]=$fssz;
+ $fs="$fss[0] $fss[1]:$fss[2]";
+ $s=' ';
+ if ($fsl) {
+ $fs="$fss[1]:$fss[2]";
+ $s='';
+ }
+ if ($fs eq "$chmod$s$chown" && $fs eq "$devchmod$s$devchown") {
+ $filestatus='runtime+development ';
+ }
+ elsif ($fs eq "$chmod$s$chown") {
+ $filestatus='runtime ';
+ }
+ elsif ($fs eq "$devchmod$s$devchown") {
+ $filestatus='development ';
+ }
+ else {
+ $filestatus="ERROR ";
+ }
+ }
+ }
$description.=<
$fs
$category
$files[$i]