Displaying 1 result from an estimated 1 matches for "backupfilesexclude".
2007 Feb 13
1
rsync on . from backuppc
...ignore errors = yes
ignore nonreadable = yes
transfer logging = no
timeout = 600
dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz
And the corresponding .pl file in /etc/backuppc on the server:
$Conf{RsyncShareName} = ['all'];
$Conf{BackupFilesExclude} ={
'all' =>
['/tmp',
'/proc',
'/boot',
'/sys',
'/var/run',
'/boot',
'/dev',
'/media',
'/mnt']
};
$Conf{XferMethod} = 'rsyn...