/[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 303 by dpavlin, Sat Jan 28 16:45:46 2006 UTC
# Line 1749  $Conf{CgiCSSFile} = 'BackupPC_stnd.css'; Line 1749  $Conf{CgiCSSFile} = 'BackupPC_stnd.css';
1749  $Conf{SearchDSN} = 'dbi:Pg:dbname=backuppc';  $Conf{SearchDSN} = 'dbi:Pg:dbname=backuppc';
1750  $Conf{SearchUser} = 'dpavlin';  $Conf{SearchUser} = 'dpavlin';
1751  #  #
1752  # if you want to use experimental HyperEstraier support (which require  # if you want to use experimental Hyper Estraier support (which require
1753  # installation of HyperEstraier and swig binding for perl) select  # installation of Search::Estraier perl module from CPAN) select
1754  # path to index (relative to $TopDir) or node URI  # path to index (relative to $TopDir) or node URI
1755  #$Conf{HyperEstraierIndex} = '/casket/';  #$Conf{HyperEstraierIndex} = '/casket/';
1756  $Conf{HyperEstraierIndex} = 'http://localhost:1978/node/backuppc';  $Conf{HyperEstraierIndex} = 'http://localhost:1978/node/backuppc';
# 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    
1772    #
1773    # archive media size (in bytes)
1774    # default: 4.2Gb for DVD
1775    #
1776    $Conf{MaxArchiveSize} = 4200 * 1024 * 1024;
1777    
1778    #
1779    # maximum size of one (uncompressed) file on archive medium (in bytes)
1780    # default: 2Gb - 2k for DVD
1781    $Conf{MaxArchiveFileSize} = (2048 - 2) * 1024 * 1024;
1782    
1783    #
1784    # Temporary directory for ISO images (relative to install dir)
1785    #
1786    $Conf{ISOTempDir} = 'temp/iso';
1787    
1788    ####
1789    # configuration data for burning
1790    ####
1791    $Conf{CDRecordBin} = 'cdrecord';
1792    $Conf{CDRecordOpts} = 'dev=/dev/hdc blank=fast -dao -v -eject -dummy';
1793    
1794    #$Conf{CDRecordBin} = 'dvdrecord';
1795    #$Conf{CDRecordOpts} = 'dev=0,0,0 -dao -v -eject -dummy';
1796    
1797    # gzip level for creating tar.gz increments
1798    # default is -6, -1 is fast, -9 is slow
1799    #$Conf{GzipLevel} = '-6';
1800    $Conf{GzipLevel} = '-1';
1801    
1802    # number of archive copies to burn
1803    $Conf{BurnMultipleCopies} = 2;
1804    
1805    # Other command-line utilities used
1806    $Conf{ejectBin} = 'eject';
1807    $Conf{ejectOpts} = '/dev/cdrom';
1808    
1809    $Conf{mkisofsBin} = 'mkisofs';

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

  ViewVC Help
Powered by ViewVC 1.1.26