/[BackupPC]/trunk/conf/config.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/conf/config.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 116 by dpavlin, Sun Sep 11 12:39:24 2005 UTC revision 234 by dpavlin, Tue Nov 8 20:24:45 2005 UTC
# Line 1759  $Conf{HyperEstraierIndex} = 'http://loca Line 1759  $Conf{HyperEstraierIndex} = 'http://loca
1759  # temp directory for storing gzip and iso files when createing iso images  # temp directory for storing gzip and iso files when createing iso images
1760  #  #
1761  $Conf{GzipTempDir} = 'temp';  $Conf{GzipTempDir} = 'temp';
1762  $Conf{GzipSchema} = '\h_\s_\n.tar.gz';  
1763    #
1764    # nameing schema for snapshots (.tar.gz will be added)
1765    # \h    - hostname
1766    # \s    - share
1767    # \n    - increment numer
1768    #
1769    $Conf{GzipSchema} = '\h_\s_\n';
1770    #
1771    # schema for part which will be added to GzipSchema (before .tar.gz)
1772    # (if file is bigger than MaxArchiveFileSize)
1773    #
1774    $Cont{GzipSchemaPart} = '-\p';
1775    
1776    #
1777    # archive media size (in kb)
1778    # default: 4.2Gb for DVD
1779    #
1780    $Conf{MaxArchiveSize} = 4200 * 1024;
1781    
1782    #
1783    # maximum size of one (uncompressed) file on archive medium (in kb)
1784    # default: 2Gb - 2k for DVD
1785    $Conf{MaxArchiveFileSize} = (2048 - 2) * 1024;
1786    
1787    #
1788    # Temporary directory for ISO images (relative to install dir)
1789    #
1790    $Conf{ISOTempDir} = 'temp/iso';
1791    
1792    ####
1793    # configuration data for burning
1794    ####
1795    $Conf{CDRecordBin} = 'cdrecord';
1796    $Conf{CDRecordOpts} = 'dev=/dev/hdc blank=fast -dao -v -eject -dummy';
1797    
1798    #$Conf{CDRecordBin} = 'dvdrecord';
1799    #$Conf{CDRecordOpts} = 'dev=0,0,0 -dao -v -eject -dummy';
1800    
1801    # gzip level for creating tar.gz increments
1802    # default is -6, -1 is fast, -9 is slow
1803    #$Conf{GzipLevel} = '-6';
1804    $Conf{GzipLevel} = '-1';
1805    
1806    # number of archive copies to burn
1807    $Conf{BurnMultipleCopies} = 2;
1808    
1809    # Other command-line utilities used
1810    $Conf{ejectBin} = 'eject';
1811    $Conf{ejectOpts} = '/dev/cdrom';
1812    
1813    $Conf{mkisofsBin} = 'mkisofs';

Legend:
Removed from v.116  
changed lines
  Added in v.234

  ViewVC Help
Powered by ViewVC 1.1.26