Subversion Repositories DevTools

Rev

Rev 5398 | Rev 5404 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5398 Rev 5399
Line 82... Line 82...
82
    delCount => 0,                      # Packages marked for deletion
82
    delCount => 0,                      # Packages marked for deletion
83
    staleTags => 0,                     # Stale Tags
83
    staleTags => 0,                     # Stale Tags
84
    linkErrors => 0,                    # Transfer errors
84
    linkErrors => 0,                    # Transfer errors
85
                                        # 
85
                                        # 
86
                                        # Per Cycle Data - Calculated each processing Cycle
86
                                        # Per Cycle Data - Calculated each processing Cycle
87
    total    => 0,                      # Packages on target machine
87
    remoteTotal => 0,                   # Packages on target machine
-
 
88
    total    => 0,                      # Packages to be synced
88
    delete   => 0,                      # Packages to delete
89
    delete   => 0,                      # Packages to delete
89
    excluded => 0,                      # Packages excluded    
90
    excluded => 0,                      # Packages excluded    
90
    filtered => 0,                      # Packages filtered out
91
    filtered => 0,                      # Packages filtered out
91
    missing  => 0,                      # Packages missing
92
    missing  => 0,                      # Packages missing
92
    transfer => 0,                      # Packages to transfer
93
    transfer => 0,                      # Packages to transfer
Line 619... Line 620...
619
    #
620
    #
620
    #   Update stats
621
    #   Update stats
621
    #   At this point we are looking pretty good
622
    #   At this point we are looking pretty good
622
    #   
623
    #   
623
    $statistics{state} = 'OK';
624
    $statistics{state} = 'OK';
-
 
625
    $statistics{total} = scalar keys(%{$pkgList});
624
    $statistics{total} = scalar keys(%{$remotePkgList});
626
    $statistics{remoteTotal} = scalar keys(%{$remotePkgList});
625
    $statistics{transfer} = $needPkgListCount;
627
    $statistics{transfer} = $needPkgListCount;
626
    $statistics{delete} = $excessPkgListCount;
628
    $statistics{delete} = $excessPkgListCount;
627
    $statistics{filtered} = $filteredCount;
629
    $statistics{filtered} = $filteredCount;
628
    $statistics{missing} = $missingCount;
630
    $statistics{missing} = $missingCount;
629
    $statistics{writable} = $writableCount;
631
    $statistics{writable} = $writableCount;