Displaying 4 results from an estimated 4 matches for "xfer_dir".
Did you mean:
xfer_dirs
2005 Sep 27
1
--delete and --dirs
rsync-2.6.6 manpage says:
--delete
[...]
This option has no effect unless directory recursion is enabled.
True. In fact, I noted that --delete doesn't delete anything if --dirs
is used rather than --recursive.
Is there any reason for --delete not to delete when used with --dirs?
Is there a way to get rsync to actually delete files on the receiving
end when using
2016 Oct 07
3
[Bug 12367] New: temporary lines in --progress output are not cleared
https://bugzilla.samba.org/show_bug.cgi?id=12367
Bug ID: 12367
Summary: temporary lines in --progress output are not cleared
Product: rsync
Version: 3.1.2
Hardware: All
OS: All
Status: NEW
Severity: minor
Priority: P5
Component: core
Assignee: wayned at samba.org
2008 Feb 15
4
Revised flags patch
...if
+
if (write_batch && read_batch) {
snprintf(err_buf, sizeof err_buf,
"--write-batch and --read-batch can not be used together\n");
@@ -1803,6 +1820,9 @@ void server_options(char **args, int *ar
* sans -r because the --no-r option was added at the same time. */
if (xfer_dirs && !recurse && delete_mode && am_sender)
args[ac++] = "--no-r";
+
+ if (preserve_fileflags)
+ args[ac++] = "--fileflags";
if (do_compression && def_compress_level != Z_DEFAULT_COMPRESSION) {
if (asprintf(&arg, "--compress-leve...
2007 Sep 22
0
rsync build on IA64 using icc
...c(36): remark #1419: external declaration in primary source file
extern int numeric_ids;
^
flist.c(37): remark #1419: external declaration in primary source file
extern int recurse;
^
flist.c(38): remark #1419: external declaration in primary source file
extern int xfer_dirs;
^
flist.c(39): remark #1419: external declaration in primary source file
extern int filesfrom_fd;
^
flist.c(40): remark #1419: external declaration in primary source file
extern int one_file_system;
^
flist.c(41): remark #1419: external declaration in...