| 123456789101112131415161718 |
- #
- # Local server backup of /etc as user backuppc
- #
- $Conf{XferMethod} = 'rsync';
- #$Conf{TarShareName} = ['/etc'];
- $Conf{RsyncShareName} = ['/root','/etc','/home','/var/www'];
- $Conf{TarClientCmd} = '/usr/bin/env LC_ALL=C $tarPath -c -v -f - -C $shareName'
- . ' --totals';
- # remove extra shell escapes ($fileList+ etc.) that are
- # needed for remote backups but may break local ones
- $Conf{TarFullArgs} = '$fileList';
- $Conf{TarIncrArgs} = '--newer=$incrDate $fileList';
- $Conf{host} = 'vmhost01.int.itguru.at';
- $Conf{ClientNameAlias} = '144.76.238.57';
|