Create host config file

From GLMWiki
Revision as of 13:55, 16 September 2009 by Dhosh (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
# You need to change: $Conf{RsyncdUserName}, $Conf{RsyncdPasswd}, $Conf{RsyncShareName} to your settings.
#                                                                                              
# Local server backup of /etc as user backuppc                                                 
#                                                                                              
# Minimum period in days between full and incremental backups:                                 
$Conf{FullPeriod} = '6.97';                                                                    
$Conf{IncrPeriod} = '0.97';                                                                    
                                                                                               
# Number of full and incremental backups to keep:                                              
$Conf{FullKeepCnt} = [                                                                         
  '2'                                                                                          
];                                                                                             
$Conf{IncrKeepCnt} = '6';                                                                      
# Note that additional fulls will be kept for as long as is necessary                          
# to support remaining incrementals.                                                           
                                                                                               
# What transport to use backup the client [smb|rsync|rsyncd|tar|archive]:                      
$Conf{XferMethod} = 'rsyncd';                          <---- LEAVE this setting                                           
$Conf{RsyncdClientPort} = 873;  <---- Needs to be unique for each client on a given remote network
$Conf{RsyncdUserName} = 'backuppc';                                                              
$Conf{RsyncdPasswd} = 'YOUR-PASSWORD-GOES-IN-HERE';    <---- UPDATE AS NEEDED                                        
$Conf{RsyncShareName} = [                                                                      
  'root'                                               <---- UPDATE AS NEEDED
];

# If this is defined only these files/paths will be included in the backup:
$Conf{BackupFilesOnly} = {
  '*' => [
    '/'                                                <---- UPDDATE AS NEEDED to match ShareName
  ]
};

# These files/paths will be excluded from the backup:  
$Conf{BackupFilesExclude} = {
  '*' => [
    'WUTemp',
    'UsrClass.dat',
    'UsrClass.dat.LOG',
    'NTUSER.DAT',
    'ntuser.dat.LOG',
    'parent.lock',
    'Thumbs.db',
    'IconCache.db',
    'pagefile.sys',
    'hiberfil.sys',
    '/WINDOWS/system32/config/SAM',
    '/WINDOWS/system32/config/SAM.LOG',
    '/WINDOWS/system32/config/SECURITY',
    '/WINDOWS/system32/config/SECURITY.LOG',
    '/WINDOWS/system32/config/default',
    '/WINDOWS/system32/config/default.LOG',
    '/WINDOWS/system32/config/software',
    '/WINDOWS/system32/config/software.LOG',
    '/WINDOWS/system32/config/system',
    '/WINDOWS/system32/config/system.LOG',
    '/WINDOWS/system32/CatRoot2/edb.log',
    '/WINDOWS/system32/CatRoot2/tmp.edb',
    '/WINDOWS/system32/CatRoot2/edbtmp.log',
    '/WINDOWS/SoftwareDistribution/EventCache/*',
    '/*/Lokale?Einstellungen/Temp',
    '/*/Cache',
    '/RECYCLER',
    '/*/Temporary?Internet?Files',
    '/System?Volume?Information',
    '/WINDOWS/pchealth/helpctr/DataColl'
  ]
};