X-Git-Url: http://git.rot13.org/?p=BackupPC.git;a=blobdiff_plain;f=bin%2FBackupPC_nightly;h=5548738b1f960c75c0b8468eb7cb1d43e436d2bd;hp=b1a06ae2c8cd1bdcae9cb628aae2b7a512d58772;hb=ce708288691ba7dd95a8dac7a468bc0e4c1d6588;hpb=e9453b7611be63303572ae443d5fb56b73364678 diff --git a/bin/BackupPC_nightly b/bin/BackupPC_nightly index b1a06ae..5548738 100755 --- a/bin/BackupPC_nightly +++ b/bin/BackupPC_nightly @@ -1,4 +1,4 @@ -#!/bin/perl -T +#!/bin/perl #============================================================= -*-perl-*- # # BackupPC_nightly: Nightly cleanup & statistics script. @@ -17,7 +17,7 @@ # Craig Barratt # # COPYRIGHT -# Copyright (C) 2001 Craig Barratt +# Copyright (C) 2001-2003 Craig Barratt # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -35,13 +35,14 @@ # #======================================================================== # -# Version 1.6.0_CVS, released 10 Dec 2002. +# Version 2.1.0beta0, released 20 Mar 2004. # # See http://backuppc.sourceforge.net. # #======================================================================== use strict; +no utf8; use lib "/usr/local/BackupPC/lib"; use BackupPC::Lib; use BackupPC::FileZIO; @@ -101,7 +102,7 @@ if ( $mday == 1 ) { "$TopDir/pc/$host/LOG.0.z", "$TopDir/pc/$host/LOG.0", $Conf{CompressLevel}, 1); - open(LOG, ">$TopDir/pc/$host/LOG") && close(LOG); + open(LOG, ">", "$TopDir/pc/$host/LOG") && close(LOG); } } @@ -120,6 +121,7 @@ my $fileCntRep; # total number of file names containing "_", ie: files # that have repeated md5 checksums my $fileRepMax; # worse case number of files that have repeated checksums # (ie: max(nnn+1) for all names xxxxxxxxxxxxxxxx_nnn) +my $fileLinkMax; # maximum number of hardlinks on a pool file my $fileCntRename; # number of renamed files (to keep file numbering # contiguous) my %FixList; # list of paths that need to be renamed to avoid @@ -133,6 +135,7 @@ for my $pool ( qw(pool cpool) ) { $blkCnt2 = 0; $fileCntRep = 0; $fileRepMax = 0; + $fileLinkMax = 0; $fileCntRename = 0; %FixList = (); find({wanted => \&GetPoolStats, no_chdir => 1}, "$TopDir/$pool"); @@ -168,7 +171,8 @@ for my $pool ( qw(pool cpool) ) { } } print("BackupPC_stats = $pool,$fileCnt,$dirCnt,$kb,$kb2,$kbRm,$fileCntRm," - . "$fileCntRep,$fileRepMax,$fileCntRename\n"); + . "$fileCntRep,$fileRepMax,$fileCntRename," + . "$fileLinkMax\n"); } ########################################################################### @@ -218,5 +222,6 @@ sub GetPoolStats $fileCnt += -f; $blkCnt += $s[12]; $blkCnt2 += $s[12] if ( -f && $s[3] == 2 ); + $fileLinkMax = $s[3] if ( $fileLinkMax < $s[3] ); } }