I am sync-ing /export/home/ on my unix server to another unix server. On Server A new directories get created all the time. Server needs a copy of those. For some reason rsync will not create and update the directories on server b? It will copy any updates to existing directories though.. rsync -orgtpav --stats --progress /export/home serverb::homedirs Jeremy S. Loukinas -------------- next part -------------- HTML attachment scrubbed and removed
On Thu, Jan 27, 2005 at 02:24:10PM -0500, Loukinas, Jeremy wrote:> For some reason rsync will not create and update the directories on > server b? It will copy any updates to existing directories though..The only reason rsync would skip new a directory is if (1) it didn't have permissions to read the dir, (2) the directory was excluded via --exclude, (3) the directory is outside the transfer. Are you getting any error messages? ..wayne..