rsync version 2.4.6 protocol version 24 gin@rhysling:~> rsync -avv ~/share/cvs-xemacs-head/XEmacs/xemacsweb ~/share/public_html/xemacsweb building file list ... done ... xemacsweb/About/XEmacsServices.content is uptodate ... gin@rhysling:~> ls -l {~/share/cvs-xemacs-head/XEmacs/xemacsweb,~/share/public_html/xemacsweb}/About/XEmacsServices.content -rw-r--r-- 1 gin sdu 40379 Jul 6 01:32 /home/gin/share/cvs-xemacs-head/XEmacs/xemacsweb/About/XEmacsServices.content -rw-r--r-- 1 gin sdu 37841 Jun 2 19:02 /home/gin/share/public_html/xemacsweb/About/XEmacsServices.content
On Tue, Jul 06, 2004 at 07:50:51PM +0400, Ilya N. Golubev wrote:> rsync version 2.4.6 protocol version 24 > > gin@rhysling:~> rsync -avv ~/share/cvs-xemacs-head/XEmacs/xemacsweb ~/share/public_html/xemacsweb > building file list ... done > > ... > > xemacsweb/About/XEmacsServices.content is uptodate > > ... > > gin@rhysling:~> ls -l {~/share/cvs-xemacs-head/XEmacs/xemacsweb,~/share/public_html/xemacsweb}/About/XEmacsServices.content > -rw-r--r-- 1 gin sdu 40379 Jul 6 01:32 /home/gin/share/cvs-xemacs-head/XEmacs/xemacsweb/About/XEmacsServices.content^^^^^ Ilya, Am I correct in guessing that 01:32 is _during_ the rsync run? If so, you might benefit from a patch that was posted to the list about a month ago. I don't know if it made it into CVS or not. Alternatively, you can simply repeat the execution of the command. -chris> -rw-r--r-- 1 gin sdu 37841 Jun 2 19:02 /home/gin/share/public_html/xemacsweb/About/XEmacsServices.content > -- > To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync > Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
> Am I correct in guessing that 01:32 is _during_ the rsync run?No. The file in src dir was updated before rsync run, and became newer than one in dest dir.
On Wed, Jul 07, 2004 at 06:01:25PM +0400, Ilya N. Golubev wrote:> > Am I correct in guessing that 01:32 is _during_ the rsync run? > > No. The file in src dir was updated before rsync run, and became > newer than one in dest dir.Does rsync version 2.6.2 exhibit this same behavior? -chris> -- > To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync > Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
On Tue, Jul 06, 2004 at 07:50:51PM +0400, Ilya N. Golubev wrote:> rsync -avv ~/share/cvs-xemacs-head/XEmacs/xemacsweb ~/share/public_html/xemacsweb > ls -l {~/share/cvs-xemacs-head/XEmacs/xemacsweb,~/share/public_html/xemacsweb}/About/XEmacsServices.contentYour ls command does not match the rsync command. It should have been this: ls -l {~/share/cvs-xemacs-head/XEmacs,~/share/public_html/xemacsweb}/xemacsweb/About/XEmacsServices.content You probably didn't mean to duplicate the xemacsweb source dir inside the xemacsweb destination dir. If so, you should have run this rsync command:> rsync -avv ~/share/cvs-xemacs-head/XEmacs/xemacsweb ~/share/public_html..wayne..