I believe the error above from BackupPC_nightly is caused by a change to the API
in File::Find. Since all of my backups are in cpool, my pool directory is
completely empty, and trying to do a File::Find(undef) is what is causing the
problem. I've patched my BackupPC_nightly to skip directories that don't exist
and will report success/failure tomorrow.
Simple diff:
*** BackupPC_nightly.orig 2004-07-20 17:27:40.000000000 -0400
--- BackupPC_nightly 2004-07-20 17:29:39.000000000 -0400
***************
*** 148,153 ****
--- 148,154 ----
$fileLinkMax = 0;
$fileCntRename = 0;
%FixList = ();
+ next if ( ! -d "$TopDir/$pool/$dir" );
find({wanted => \&GetPoolStats}, "$TopDir/$pool/$dir");
my $kb = $blkCnt / 2;
my $kbRm = $blkCntRm / 2;
--
Tony Nelson
Director of IT Operations
Starpoint Solutions LLC
115 Broadway, 2nd Fl
New York, NY 10006
This email message from Starpoint Solutions LLC is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message. Opinions, conclusions and other information in this message that do not relate to the official business of Starpoint Solutions shall be understood as neither given nor endorsed by it.
