--- trunk/conf/config.pl 2005/10/07 10:28:55 144 +++ trunk/conf/config.pl 2005/10/25 09:30:52 230 @@ -1767,5 +1767,39 @@ # # archive media size (in kb) +# default: 4.2Gb for DVD # -$Conf{MaxArchiveSize} = 4505600; +$Conf{MaxArchiveSize} = 4200 * 1024; + +# +# maximum size of one file on archive medium (in kb) +# default: 4Gb - 2k for DVD +$Conf{MaxArchiveFileSize} = (4096 - 2) * 1024; + +# +# Temporary directory for ISO images (relative to install dir) +# +$Conf{ISOTempDir} = 'temp/iso'; + +#### +# configuration data for burning +#### +$Conf{CDRecordBin} = 'cdrecord'; +$Conf{CDRecordOpts} = 'dev=/dev/hdc blank=fast -dao -v -eject -dummy'; + +#$Conf{CDRecordBin} = 'dvdrecord'; +#$Conf{CDRecordOpts} = 'dev=0,0,0 -dao -v -eject -dummy'; + +# gzip level for creating tar.gz increments +# default is -6, -1 is fast, -9 is slow +#$Conf{GzipLevel} = '-6'; +$Conf{GzipLevel} = '-1'; + +# number of archive copies to burn +$Conf{BurnMultipleCopies} = 2; + +# Other command-line utilities used +$Conf{ejectBin} = 'eject'; +$Conf{ejectOpts} = '/dev/cdrom'; + +$Conf{mkisofsBin} = 'mkisofs';