Displaying 3 results from an estimated 3 matches for "filesfrom_host".
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
...4
--- a/main.c
+++ b/main.c
@@ -93,7 +93,10 @@ extern int trust_sender_filter;
extern int trust_sender_args;
extern struct stats stats;
extern char *stdout_format;
+extern char *logfile_name;
extern char *logfile_format;
+extern char *logafter_name;
+extern int log_after_transfer;
extern char *filesfrom_host;
extern char *partial_dir;
extern char *rsync_path;
@@ -1053,6 +1056,10 @@ static int do_recv(int f_in, int f_out, char *local_name)
io_start_buffering_in(f_in);
io_start_multiplex_out(f_out);
+ /* Reopen log file for --log-after */
+ if (log_after_transfer)
+ logfile_name = logafter...
2007 Sep 22
0
rsync build on IA64 using icc
...nal declaration in primary source file
extern pid_t cleanup_child_pid;
^
main.c(64): remark #1419: external declaration in primary source file
extern struct stats stats;
^
main.c(65): remark #1419: external declaration in primary source file
extern char *filesfrom_host;
^
main.c(66): remark #1419: external declaration in primary source file
extern char *partial_dir;
^
main.c(67): remark #1419: external declaration in primary source file
extern char *basis_dir[];
^
main.c(68): remark #1419: external declaration i...