X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=conf%2Fconfig.pl;h=f312293ccb053e4c00553bed282f5030754caeb4;hb=f465ccb074e3a6c28ca32e22e18527464b6076ed;hp=917d6c746e2d76ccb0d68574fa9b0b17d96e622a;hpb=2efaca2057a95c28a93fa9af61f28a375003349f;p=BackupPC.git diff --git a/conf/config.pl b/conf/config.pl index 917d6c7..f312293 100644 --- a/conf/config.pl +++ b/conf/config.pl @@ -741,7 +741,7 @@ $Conf{BackupZeroFilesIsFatal} = 1; # - 'rsync': backup and restore via rsync (via rsh or ssh). # Best choice for linux/unix. Good choice also for WinXX. # -# - 'rsyncd': backup and restre via rsync daemon on the client. +# - 'rsyncd': backup and restore via rsync daemon on the client. # Best choice for linux/unix if you have rsyncd running on # the client. Good choice also for WinXX. # @@ -1337,7 +1337,7 @@ $Conf{PingMaxMsec} = 20; # Despite the name, this parameter sets the timeout for all transport # methods (tar, smb etc). # -$Conf{ClientTimeout} = 7200; +$Conf{ClientTimeout} = 72000; # # Maximum number of log files we keep around in each PC's directory @@ -1510,7 +1510,7 @@ $Conf{EMailUserDestDomain} = ''; # To: $user$domain # cc: # Subject: $subj -# +# $headers # Dear $userName, # # This is a site-specific email message. @@ -1538,7 +1538,7 @@ $Conf{EMailNotifyOldBackupDays} = 7.0; # To: $user$domain # cc: # Subject: $subj -# +# $headers # Dear $userName, # # This is a site-specific email message. @@ -1566,7 +1566,7 @@ $Conf{EMailNotifyOldOutlookDays} = 5.0; # To: $user$domain # cc: # Subject: $subj -# +# $headers # Dear $userName, # # This is a site-specific email message. @@ -1749,10 +1749,12 @@ $Conf{CgiCSSFile} = 'BackupPC_stnd.css'; $Conf{SearchDSN} = 'dbi:Pg:dbname=backuppc'; $Conf{SearchUser} = 'dpavlin'; # -# if you want to use experimental HyperEstraier support (which require -# installation of HyperEstraier and swig binding for perl) select +# if you want to use experimental Hyper Estraier support (which require +# installation of Search::Estraier perl module from CPAN) select # path to index (relative to $TopDir) or node URI -#$Conf{HyperEstraierIndex} = '/casket/'; +# use following line to disable Hyper Estraier and prevent upgrades +# from overwriting it +#$Conf{HyperEstraierIndex} = ''; $Conf{HyperEstraierIndex} = 'http://localhost:1978/node/backuppc'; # @@ -1761,11 +1763,49 @@ $Conf{HyperEstraierIndex} = 'http://localhost:1978/node/backuppc'; $Conf{GzipTempDir} = 'temp'; # -# schema for naming snapshot gzips +# nameing schema for snapshots (.tar.gz will be added) +# \h - hostname +# \s - share +# \n - increment numer +# +$Conf{GzipSchema} = '\h_\s_\n'; +# + +# +# archive media size (in bytes) +# default: 4.2Gb for DVD # -$Conf{GzipSchema} = '\h_\s_\n.tar.gz'; +$Conf{MaxArchiveSize} = 4200 * 1024 * 1024; # -# archive media size (in kb) +# maximum size of one (uncompressed) file on archive medium (in bytes) +# default: 2Gb - 2k for DVD +$Conf{MaxArchiveFileSize} = (2048 - 2) * 1024 * 1024; + # -$Conf{MaxArchiveSize} = 4505600; +# 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';