| 12345678910111213141516171819202122232425 |
- #
- # Local server backup of /etc as user backuppc
- #
- $Conf{XferMethod} = 'rsync';
- #$Conf{TarShareName} = ['/etc'];
- $Conf{RsyncShareName} = [
- '/root',
- '/etc',
- '/var/www',
- '/home',
- '/var/lib'
- ];
- $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} = 'web01.int.itguru.at';
- $Conf{ClientNameAlias} = '192.168.122.10';
- $Conf{RsyncClientCmd} = '$sshPath -l backuppc $host nice -n 19 sudo $rsyncPath $argList+';
- $Conf{PingMaxMsec} = 50;
|