Displaying 20 results from an estimated 22 matches for "push_dir".
2002 Aug 27
5
rsync: push_dir TESTDIR: No such file or directory
...V.ER.IP:TESTDIR
opening connection using ssh -p30000 -l MYUSERNAME MY.SERV.ER.IP rsync
--server -vvntrc --modify-window=2 . TESTDIR
Debian GNU/%s 3.0 %h
MYUSERNAME@MYSERVERIP's password:
building file list ...
expand file_list to 4000 bytes, did move
done
created directory TESTDIR
rsync: push_dir TESTDIR: No such file or directory
rsync error: errors selecting input/output files, dirs (code 3) at
main.c(294)
rsync: read error: Connection reset by peer
rsync error: error in rsync protocol data stream (code 12) at io.c(162)
On the client I'm using Win2K SP2, running Cygwin's rsync 2....
2009 May 20
1
2.6.9 and 3.0.5 sync error
...ow command. And I met this
error?
I think it might be due to 2.6.9 and 3.0.5 compatible issue. So how to
solve the problem? Thanks.
rsync -vrtopg --progress --delete
--password-file=rsync-password /path/on/pc
root@192.168.0.202::destination
building file list ...
151804 files to consider
rsync: push_dir#1 "/" (in maps) failed: Permission denied (13)
rsync error: errors selecting input/output files, dirs (code 3) at
main.c(486) [receiver=2.6.9]
rsync: connection unexpectedly closed (4 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(600)
[...
2002 Feb 24
2
Write-only option
...2)
rprintf(FINFO,"server_sender starting pid=%d\n",(int)getpid());
+ if (am_daemon && lp_write_only(module_id) && am_sender) {
+ rprintf(FERROR,"ERROR: module is write only\n");
+ exit_cleanup(RERR_SYNTAX);
+ return;
+ }
+
if (!relative_paths && !push_dir(dir, 0)) {
rprintf(FERROR,"push_dir %s: %s (3)\n",dir,strerror(errno));
exit_cleanup(RERR_FILESELECT);
diff -urN rsync-2.5.2.orig/proto.h rsync-2.5.2/proto.h
--- rsync-2.5.2.orig/proto.h Sat Jan 26 00:07:33 2002
+++ rsync-2.5.2/proto.h Sat Feb 23 13:48:12 2002
@@ -125,6 +125,7 @@
c...
2003 Mar 18
3
problems with rsync in cygwin
...ync and
tried again. The first error is gone, only to be replaced with another:
$ rsync -vva /cygdrive/c/installs/palm rsync://192.168.2.3/palm
opening connection using rsync rsync rsync --server -vvlogDtpr .
//192.168.2.3/palm
building file list ...
expand file_list to 4000 bytes, did move
done
push_dir rsync : No such file or directory (4)
rsync error: errors selecting input/output files, dirs (code 3) at
/tmp/rsync-2.5.5/main.c(468)
rsync: connection unexpectedly closed (8 bytes read so far)
rsync error: error in rsync protocol data stream (code 12) at
/tmp/rsync-2.5.5/io.c(150)
What should I...
2005 Oct 20
1
[Bug 3198] rsyncing a file to a dest path where dirname(path) is a file quietly fails
https://bugzilla.samba.org/show_bug.cgi?id=3198
wayned@samba.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From wayned@samba.org 2005-10-20 09:45
2006 Sep 18
1
code 23 error.
...cleanup(RERR_SYNTAX);
return;
}
if (am_daemon && lp_read_only(module_id) && remove_sent_files) {
rprintf(FERROR,
"ERROR: --remove-sent-files cannot be used with a read-only module\n");
exit_cleanup(RERR_SYNTAX);
return;
}
if (!relative_paths && !push_dir(dir)) {
rsyserr(FERROR, errno, "push_dir#3 %s failed",
full_fname(dir));
exit_cleanup(RERR_FILESELECT);
}
argc--;
argv++;
if (argc == 0 && (recurse || list_only)) {
argc = 1;
argv--;
argv[0] = ".";
}
flist = send_file_list(f_out,argc,argv);
if (!f...
2003 Oct 22
1
rsync --dry-run --link-dest problem
...cketpairs, hard links, symlinks, batchfiles,
IPv6, 64-bit system inums, 64-bit internal inums
# rsync -v -a -H --dry-run --exclude=/proc --exclude=/mnt --delete --link-dest=../2003-10-21/ / 2003-10-21c/
building file list ... done
created directory 2003-10-21c/
rsync: push_dir 2003-10-21c/: No such file or directory
rsync error: errors selecting input/output files, dirs (code 3) at main.c(328)
rsync: connection unexpectedly closed (8 bytes read so far)
rsync error: error in rsync protocol data stream (code 12) at io.c(165)
The destination is mounted under /mnt...
2007 Nov 12
2
DO NOT REPLY [Bug 5078] New: Unable to use Win32 device paths with --files-from
...user@remote.server:Backup
Next, I try to implement the same but using --files-from, as follows:
rsync -ae ssh --files-from=files.txt
//?/GLOBALROOT/Device/HarddiskVolumeShadowCopy1/ user@remote.server:Backup
(files.txt contains SomeFolder/)
However, this fails with the following error:
rsync: push_dir "//?/GLOBALROOT/Device/HarddiskVolumeShadowCopy1/" failed: Not
a directory (20)
rsync error: errors selecting input/output files, dirs (code 3) at
flist.c(1082)
[sender=2.6.9]
I have also tried without the trailing slash after HarddiskVolumeShadowCopy1
and get a different error:
rsync:...
2004 Feb 12
1
[PATCH] write only
...(int)getpid());
+ if (am_daemon && lp_write_only(module_id) && !am_sender) {
+ rprintf(FERROR,"ERROR: module is write only\n");
+ exit_cleanup(RERR_SYNTAX);
+ return;
+ }
+
if (!relative_paths && !push_dir(dir, 0)) {
rprintf(FERROR, "push_dir %s failed: %s (3)\n",
full_fname(dir), strerror(errno));
--- rsync-2.6.0/loadparm.c.orig Thu Feb 12 11:47:17 2004
+++ rsync-2.6.0/loadparm.c Thu Feb 12 11:48:11 2004
@@ -119,6 +119,7 @@ typedef struct...
2007 Jun 06
1
add inverse recursive feature or do a mkdir -p/install -D -d ?
...ain.c(529) [receiver=2.6.9]
rsync: connection unexpectedly closed (8 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(453)
[sender=2.6.9]
$ rsync -av test1/toto1/toto2/toto3/toto4/a test2/toto1/toto2/toto3/toto4/a
building file list ... done
rsync: push_dir#3 "/home/baco/test2/toto1/toto2/toto3/toto4" failed: No
such file or directory (2)
rsync error: errors selecting input/output files, dirs (code 3) at
main.c(565) [receiver=2.6.9]
rsync: connection unexpectedly closed (8 bytes received so far) [sender]
rsync error: error in rsync protocol...
2001 Nov 20
2
rsync server over SSH [includes code patches]
...d gid\n");
return -1;
}
gid = atoi(p);
***************
*** 211,230 ****
if (use_chroot) {
if (chroot(lp_path(i))) {
rprintf(FERROR,"chroot %s failed\n", lp_path(i));
! io_printf(fd,"@ERROR: chroot failed\n");
return -1;
}
if (!push_dir("/", 0)) {
rprintf(FERROR,"chdir %s failed\n", lp_path(i));
! io_printf(fd,"@ERROR: chdir failed\n");
return -1;
}
} else {
if (!push_dir(lp_path(i), 0)) {
rprintf(FERROR,"chdir %s failed\n", lp_path(i));
! io_printf(fd,&quo...
2002 Jan 11
0
(patch) fix for spinning child processes in daemon mode
...:23:18 -0000
@@ -821,9 +821,11 @@
}
signal(SIGINT,SIGNAL_CAST sig_int);
- signal(SIGPIPE,SIGNAL_CAST sig_int);
signal(SIGHUP,SIGNAL_CAST sig_int);
signal(SIGTERM,SIGNAL_CAST sig_int);
+
+ /* Ignore SIGPIPE; we check error codes consistently. */
+ signal(SIGPIPE,SIG_IGN);
/* Initialize push_dir here because on some old systems getcwd
(implemented by forking "pwd" and reading its output) doesn't
2002 May 23
0
protocol errors when using --dryrun
...ir/ exists on both the local and
live server. However, we have made a new directory on the local server
(newdir), so we want that created, and its contents transferred. Here is
what rsync (dryrun) makes of it;
building file list ... done
created directory /var/www/mydomain.com/olddir/newdir
rsync: push_dir /var/www/mydomain.com/olddir/newdir: No such file or
directory
rsync error: errors selecting input/output files, dirs (code 3) at
main.c(294)
rsync: connection unexpectedly closed (8 bytes read so far)
rsync error: error in rsync protocol data stream (code 12) at io.c(150)
Now, my assumption is th...
2007 Jan 29
3
rsync: mkstemp "/20070129_1012/.status.csv.IWS933" (in test) failed: No such file or directory (2)
Hi,
---
+ rsync -av --timeout 120 /home/20070129_1012/status.csv --port 5873
fileserver::test/20070129_1012/status.csv
building file list ... done
status.csv
rsync: mkstemp "/20070129_1012/.status.csv.IWS933" (in test) failed: No such
file or directory (2)
sent 347 bytes received 38 bytes 770.00 bytes/sec
total size is 228 speedup is 0.59
rsync error: some files could not be
2009 Apr 15
1
DO NOT REPLY [Bug 6262] New: single-file rsync fails without further options set
...up: "server" is running rsyncd 2.6.9, "client" is running rsync 3.0.3.
The client runs 'rsync server::module/file.txt /some/dir/' to retrieve a single
file from a module, but the connection aborts using the following message:
---cut
You are connected to rsync20
rsync: push_dir#3 "/-" (in surbl) failed: No such file or directory (2)
rsync error: errors selecting input/output files, dirs (code 3) at
main.c(656) [sender=2.6.9]
rsync: connection unexpectedly closed (4 bytes received so far)
[receiver]
rsync error: error in rsync protocol data stream (code 12) at io...
2001 Aug 06
1
merge rsync+ into rsync (was Re: rsync-2.4.7 NEWS file)
> Just curious: what about the rsync+ patch?
Thanks for the reminder.
I've just committed Jos's rsync+ patch onto the
"branch_mbp_rsyncplus_merge" branch. If it works OK and nobody
screams I will move it across onto the main tree tomorrow or
Wednesday.
I see the patch doesn't add documentation about the new options to the
man page, so we should fix that in the future.
2004 Aug 05
0
[Bug 1582] New: rsync dry run cannot find missing folders, contradicts actual run.
...name(junkdir4/gardir1)
recv_file_name(junkdir4/gardir1/blah2)
recv_file_name(junkdir4/gardir1/blah3)
recv_file_name(junkdir4/gardir1/blah1)
received 8 names
recv_file_list done
get_local_name count=8 /export/sw/irix6/sw01/testirix6/junkdir/
created directory /export/sw/irix6/sw01/testirix6/junkdir/
push_dir "/export/sw/irix6/sw01/testirix6/junkdir/" failed: No such file or
directory (2)
rsync error: errors selecting input/output files, dirs (code 3) at main.c(355)
_exit_cleanup(code=3, file=main.c, line=355): about to call exit(3)
rsync: connection unexpectedly closed (8 bytes read so far)
r...
2003 Feb 22
1
rsync ported to BeOS-bone
..._printf(f_out, "@ERROR: asked to chroot but not possible on host OS\n");
+ return -1;
+#else
if (chroot(lp_path(i))) {
rsyserr(FERROR, errno, "chroot %s failed", lp_path(i));
io_printf(f_out, "@ERROR: chroot failed\n");
return -1;
}
+#endif
if (!push_dir("/", 0)) {
rsyserr(FERROR, errno, "chdir %s failed\n", lp_path(i));
diff -urN rsync-2.5.6.org/configure.in rsync-2.5.6/configure.in
--- rsync-2.5.6.org/configure.in Tue Jan 28 06:27:40 2003
+++ rsync-2.5.6/configure.in Thu Feb 20 21:03:22 2003
@@ -301,8...
2007 Sep 22
0
rsync build on IA64 using icc
...er
rprintf(FINFO, RSYNC_NAME "[%d] (%s%s%s) heap statistics:\n",
^
main.c(485): remark #981: operands are evaluated in unspecified order
full_fname(dest_path));
^
main.c(484): remark #981: operands are evaluated in unspecified order
rsyserr(FERROR, errno, "push_dir#1 %s failed",
^
main.c(506): remark #981: operands are evaluated in unspecified order
full_fname(dest_path));
^
main.c(505): remark #981: operands are evaluated in unspecified order
rsyserr(FERROR, errno, "ERROR: cannot stat destination %s",
^
main.c(528):...
2006 Jan 10
13
DO NOT REPLY [Bug 3392] New: fuzzy misbehaving if source is a file
https://bugzilla.samba.org/show_bug.cgi?id=3392
Summary: fuzzy misbehaving if source is a file
Product: rsync
Version: 2.6.6
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: egmont@uhulinux.hu