rsync backups
Hi All,I am currently trying to migrate away from my old tar backup system to rsync. I currently backup a list of key files from a file list with the following command:
Code:
tar clpzf /home/bak.tar.gz -T /etc/cron.daily/backup-list
Code:
# tar zxvf bak.tar.gz /

Now I need this functionality but with rsync, from what I can tell I need the command
Code:
rsync -a --include-from=/etc/cron.daily/backup-list /tmp

Thanks! Nick