search for: remotebatch

Displaying 1 result from an estimated 1 matches for "remotebatch".

2003 Jul 24
0
(no subject)
Here is a diff which should allow applying batch updates remotely ( as apposed to copying the batch files to the remote server and running rsync there ). Eg rsync --write-batch=test src dst1::dst rsync --read-batch=test dst2::dst Oli Dewdney diff -E -B -c -r rsync-2.5.6/flist.c rsync-2.5.6-remotebatch/flist.c *** rsync-2.5.6/flist.c Sat Jan 18 18:00:23 2003 --- rsync-2.5.6-remotebatch/flist.c Wed Jul 23 11:27:45 2003 *************** *** 1038,1043 **** --- 1038,1058 ---- return flist; } + void send_batch_file_list( int f, struct file_list *flist ) + { + int n; + for (n = 0; n < flist...