X-Git-Url: http://git.rot13.org/?p=BackupPC.git;a=blobdiff_plain;f=lib%2FBackupPC%2FCGI%2FSummary.pm;h=dbf132506d18b02d71beb5a3edbf1e84ab0c8d40;hp=c610e7047b27fea97bea912760686ccdf650c281;hb=5b3e6091d542c2e7445d5dd511cdf6e20aec8b8d;hpb=2c14784ad71874ec850d189060fe63d6eb9eba95 diff --git a/lib/BackupPC/CGI/Summary.pm b/lib/BackupPC/CGI/Summary.pm index c610e70..dbf1325 100644 --- a/lib/BackupPC/CGI/Summary.pm +++ b/lib/BackupPC/CGI/Summary.pm @@ -28,7 +28,7 @@ # #======================================================================== # -# Version 2.1.0_CVS, released 8 Feb 2004. +# Version 3.0.0alpha, released 23 Jan 2006. # # See http://backuppc.sourceforge.net. # @@ -48,22 +48,18 @@ sub action GetStatusInfo("hosts"); my $Privileged = CheckPermission(); - foreach my $host ( GetUserHosts(undef, 1) ) { + foreach my $host ( GetUserHosts(1) ) { my($fullDur, $incrCnt, $incrAge, $fullSize, $fullRate, $reasonHilite); my($shortErr); my @Backups = $bpc->BackupInfoRead($host); my $fullCnt = $incrCnt = 0; my $fullAge = $incrAge = -1; - if ( defined(my $error = $bpc->ConfigRead($host)) ) { - print("dump failed: Can't read PC's config file: $error\n"); - exit(1); - } + $bpc->ConfigRead($host); %Conf = $bpc->Conf(); - if ($Conf{XferMethod} eq "archive" ) { - next; - } + next if ( $Conf{XferMethod} eq "archive" ); + next if ( !$Privileged && !CheckPermission($host) ); for ( my $i = 0 ; $i < @Backups ; $i++ ) { if ( $Backups[$i]{type} eq "full" ) {