Displaying 3 results from an estimated 3 matches for "max_basis_dirs".
Did you mean:
fix_basis_dirs
2015 Oct 24
1
[Bug 11571] New: rsync-3.1.1 --link-dest arbitrary limit
...ter: fedja.beader at t-2.net
QA Contact: rsync-qa at samba.org
Luckily this one was caught while still in development as
there were more than 20 old "snapshots" to test with:
rsync: ERROR: at most 20 --link-dest args may be specified
Looking into the source:
rsync.h:151:#define MAX_BASIS_DIRS 20
There is no warning about this in the rsync manpage. This
limit should be lifted as it makes no sense to me.
--
You are receiving this mail because:
You are the QA Contact for the bug.
2006 Apr 26
2
--link-dest and file/dir transfer to remote rsync daemon
Hi NG,
I want to do incremental backups to a remote server running rsyncd
(because daemonless transfer via ssh often hangs!). In contrast to
transfer via ssh (without remote rsyncd) this doesn't seem possible, or
do I miss something?
Imagine I want to incrementally backup `mydir' to the backup space
`backup' on e remote server `alpha' running an rsync daemon. rsyncd on
2023 Jul 03
0
[PATCH] Add option --log-after to log after moving file into place
...-log-after */
+ if (log_after_transfer)
+ logfile_name = logafter_name;
+
recv_files(f_in, f_out, local_name);
io_flush(FULL_FLUSH);
handle_stats(f_in);
diff --git a/options.c b/options.c
index fd674754..4ab83650 100644
--- a/options.c
+++ b/options.c
@@ -176,7 +176,9 @@ char *basis_dir[MAX_BASIS_DIRS+1];
char *config_file = NULL;
char *shell_cmd = NULL;
char *logfile_name = NULL;
+char *logafter_name = NULL;
char *logfile_format = NULL;
+char *logafter_format = NULL;
char *stdout_format = NULL;
char *password_file = NULL;
char *early_input_file = NULL;
@@ -205,6 +207,7 @@ static const ch...