I installed the beta. Some feedback
1. Yesterday I tested the new archive option.
Installed par2cmdline-0.3.
The archive failed. It seems that BackupPC_archiveHost does not check if
there are 0 par files and then to skip the par option. Also for par2 the
command line is incorrect (uses an 'a' option where par2 required 'c'.
Also no space between -n and $parfile). I changed BackupPC_archiveHost
as below and it is working.
if ( -d $outLoc && -x $parPath ) {
if ( $parfile != 0 ) {
print("Running $parPath to create parity files\n");
print("Command line: $parPath c -n$parfile
$outLoc/$host.$bkupNum.tar$fileExt.par
$outLoc/$host.$bkupNum.tar$fileExt.*\n");
$ret = system("$parPath c -n$parfile
$outLoc/$host.$bkupNum.tar$fileExt.par
$outLoc/$host.$bkupNum.tar$fileExt.*");
if ( $ret ) {
print("Error: $parPath failed\n");
exit(1);
}
}
}
2. The PC Summary screen does not show the logo and also does not
populate the host dropdown. All the other options seem to work fine.
The archive option is great. Thanks
Jaco Bongers
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
BackupPC-users mailing list
BackupPC-users < at > lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/
