fix example _search_archive.pl configuration
authorDobrica Pavlinusic <dpavlin@rot13.org>
Fri, 28 Jan 2011 23:02:42 +0000 (00:02 +0100)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Fri, 28 Jan 2011 23:02:42 +0000 (00:02 +0100)
README.ASA

index 5134cc3..b49aa2a 100644 (file)
@@ -35,20 +35,17 @@ $Conf{CompressLevel} = 9;
 $Conf{TarCreateIncremental} = 1;
 
 # archive media size (in bytes) 4.2Gb for DVD
-#$Conf{ArchiveMediaSize} = 4200 * 1024 * 1024;
-$Conf{ArchiveMediaSize} = 1440 * 1024; # FIXME floppy
-
-# size of one chunk burned to archive medium
-# useful for transfer to smaller media or limited filesystems
-#$Conf{ArchiveChunkSize} = (2048 - 2) * 1024 * 1024; # 2Gb filesystem-limit
-$Conf{ArchiveChunkSize} = 100 * 1024 * 1024; # FIXME zipdrive
+#$Conf{ArchiveMediaSize} = 4200 * 1024 * 1024; # DVD
+$Conf{ArchiveMediaSize} =  630 * 1024 * 1024; # CD
+#$Conf{ArchiveMediaSize} =        1440 * 1024; # floppy
+#$Conf{ArchiveMediaSize} =   42 * 1024 * 1024; # FIXME
 
 
 # A size in megabytes to split the archive in to parts at.
 # This is useful where the file size of the archive might exceed the
 # capacity of the removable media. For example specify 700 if you are using CDs.
 #$Conf{ArchiveSplit} = 650;
-$Conf{ArchiveSplit} = 300 * 1024; # FIXME small testing chunks
+$Conf{ArchiveSplit} = 42; # FIXME small testing chunks
 
 
 # The amount of parity data to create for the archive using the par2 utility.