/[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 82 by dpavlin, Sun Aug 28 09:12:54 2005 UTC revision 230 by dpavlin, Tue Oct 25 09:30:52 2005 UTC
# Line 1751  $Conf{SearchUser} = 'dpavlin'; Line 1751  $Conf{SearchUser} = 'dpavlin';
1751  #  #
1752  # if you want to use experimental HyperEstraier support (which require  # if you want to use experimental HyperEstraier support (which require
1753  # installation of HyperEstraier and swig binding for perl) select  # installation of HyperEstraier and swig binding for perl) select
1754  # path to index (relative to $TopDir)  # path to index (relative to $TopDir) or node URI
1755  $Conf{HyperEstraierIndex} = '/casket/';  #$Conf{HyperEstraierIndex} = '/casket/';
1756    $Conf{HyperEstraierIndex} = 'http://localhost:1978/node/backuppc';
1757    
1758    #
1759    # temp directory for storing gzip and iso files when createing iso images
1760    #
1761    $Conf{GzipTempDir} = 'temp';
1762    
1763    #
1764    # schema for naming snapshot gzips
1765    #
1766    $Conf{GzipSchema} = '\h_\s_\n.tar.gz';
1767    
1768    #
1769    # archive media size (in kb)
1770    # default: 4.2Gb for DVD
1771    #
1772    $Conf{MaxArchiveSize} = 4200 * 1024;
1773    
1774    #
1775    # maximum size of one file on archive medium (in kb)
1776    # default: 4Gb - 2k for DVD
1777    $Conf{MaxArchiveFileSize} = (4096 - 2) * 1024;
1778    
1779    #
1780    # Temporary directory for ISO images (relative to install dir)
1781    #
1782    $Conf{ISOTempDir} = 'temp/iso';
1783    
1784    ####
1785    # configuration data for burning
1786    ####
1787    $Conf{CDRecordBin} = 'cdrecord';
1788    $Conf{CDRecordOpts} = 'dev=/dev/hdc blank=fast -dao -v -eject -dummy';
1789    
1790    #$Conf{CDRecordBin} = 'dvdrecord';
1791    #$Conf{CDRecordOpts} = 'dev=0,0,0 -dao -v -eject -dummy';
1792    
1793    # gzip level for creating tar.gz increments
1794    # default is -6, -1 is fast, -9 is slow
1795    #$Conf{GzipLevel} = '-6';
1796    $Conf{GzipLevel} = '-1';
1797    
1798    # number of archive copies to burn
1799    $Conf{BurnMultipleCopies} = 2;
1800    
1801    # Other command-line utilities used
1802    $Conf{ejectBin} = 'eject';
1803    $Conf{ejectOpts} = '/dev/cdrom';
1804    
1805    $Conf{mkisofsBin} = 'mkisofs';

Legend:
Removed from v.82  
changed lines
  Added in v.230

  ViewVC Help
Powered by ViewVC 1.1.26