Displaying 3 results from an estimated 3 matches for "hard_link_clust".
Did you mean:
hard_link_cluster
2005 Mar 31
2
Some files not logged when using --compare-dest. Bug?
Hi again.
I just spotted another peculiarity when inspecting the rsync log. When
using --compare-dest, source files that have permissions that differ
from the "comparables" are not logged, unless you're using -i.
Here's a testing session:
$ ls -lR
.:
total 12
drwxr-xr-x 2 vidar users 4096 2005-03-31 14:16 cmp/
drwxr-xr-x 2 vidar users 4096 2005-03-31 14:23 dst/
2005 Apr 23
1
--link-dest / --hard-links problem
I've looked around for a bug report on this problem and haven't seen one, so I
apologize if this has already been discussed.
I have a homegrown script which uses rsync to maintain daily backups of roughly
twenty Redhat Linux systems running RH 7.2, 7.3, AS 3, and AS 4. As there are
files with multiple links on the source systems, it is necessary to call rsync
using the -H (--hard-links)
2006 Jan 24
1
propagate atimes with rsync-2.6.6 (fwd)
...== 0) {
+ if (set_modtime(fname,file->modtime,
+ file->acctime) != 0) {
+ rsyserr(FERROR, errno,
+ "failed to set times on %s",
+ full_fname(fname));
+ return;
+ }
if (preserve_hard_links
&& file->link_u.links) {
hard_link_cluster(file, ndx,
diff -uNr rsync-2.6.6/options.c rsync-2.6.6_patch/options.c
--- rsync-2.6.6/options.c 2005-05-19 10:52:17.000000000 +0200
+++ rsync-2.6.6_patch/options.c 2006-01-11 15:56:00.000000000 +0100
@@ -48,6 +48,7 @@
int preserve_uid = 0;
int preserve_gid = 0;
int preserve_times = 0;
+int pr...