Displaying 1 result from an estimated 1 matches for "state_backup".
Did you mean:
staff_backup
2011 Mar 15
4
tar exclude question
Hi List,
hope this is not too offtopic, but this bothers me and my backup.
My backups are tar jobs in cron, eg:
20 23 * * * tar -zcf /mnt/backupInternalHosts/backup/backup.tar.gz
/etc /root /home && touch /tmp/state_backup-backup
This always sends me an unwanted email with:
tar: Removing leading `/' from member names
I consider this a bug because this informal message is printed to error out?
Ok, I rewrite my tar job to get around this:
tar -zc -f /mnt/backupInternalHosts/backup/backup.tar.gz -C / etc root...