/[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 9 by dpavlin, Thu Jun 23 12:36:22 2005 UTC revision 226 by dpavlin, Mon Oct 24 14:47:52 2005 UTC
# Line 1743  $Conf{CgiImageDirURL} = ''; Line 1743  $Conf{CgiImageDirURL} = '';
1743  $Conf{CgiCSSFile} = 'BackupPC_stnd.css';  $Conf{CgiCSSFile} = 'BackupPC_stnd.css';
1744    
1745  #  #
1746  # add search database using DBD::SQLite which will be created in $TopDir  # add search database dsn
1747  #  #
1748  $Conf{SearchDB} = 'search.db';  #$Conf{SearchDSN} = 'dbi:SQLite:dbname=$TopDir/search.db';
1749    $Conf{SearchDSN} = 'dbi:Pg:dbname=backuppc';
1750    $Conf{SearchUser} = 'dpavlin';
1751    #
1752    # if you want to use experimental HyperEstraier support (which require
1753    # installation of HyperEstraier and swig binding for perl) select
1754    # path to index (relative to $TopDir) or node URI
1755    #$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    #
1771    $Conf{MaxArchiveSize} = 4200 * 1024;
1772    
1773    #
1774    # Temporary directory for ISO images (relative to install dir)
1775    #
1776    $Conf{ISOTempDir} = 'temp/iso';
1777    
1778    ####
1779    # configuration data for burning
1780    ####
1781    $Conf{CDRecordBin} = 'cdrecord';
1782    $Conf{CDRecordOpts} = 'dev=/dev/hdc blank=fast -dao -v -eject -dummy';
1783    
1784    #$Conf{CDRecordBin} = 'dvdrecord';
1785    #$Conf{CDRecordOpts} = 'dev=0,0,0 -dao -v -eject -dummy';
1786    
1787    # gzip level for creating tar.gz increments
1788    # default is -6, -1 is fast, -9 is slow
1789    #$Conf{GzipLevel} = '-6';
1790    $Conf{GzipLevel} = '-1';
1791    
1792    # number of archive copies to burn
1793    $Conf{BurnMultipleCopies} = 2;
1794    
1795    # Other command-line utilities used
1796    $Conf{ejectBin} = 'eject';
1797    $Conf{ejectOpts} = '/dev/cdrom';
1798    
1799    $Conf{mkisofsBin} = 'mkisofs';

Legend:
Removed from v.9  
changed lines
  Added in v.226

  ViewVC Help
Powered by ViewVC 1.1.26