# 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'; $Conf{RsyncdUserName} = 'backuppc'; $Conf{RsyncdPasswd} = 'YOUR-PASSWORD-GOES-IN-HERE'; $Conf{RsyncShareName} = [ 'root' ]; # If this is defined only these files/paths will be included in the backup: $Conf{BackupFilesOnly} = { '*' => [ '/' ] }; # 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' ] };