Displaying 5 results from an estimated 5 matches for "have_remsh".
2003 Dec 16
3
default --rsh
On Mon, Dec 15, 2003 at 10:51:08AM -0800, Wayne Davison wrote:
> On Mon, Dec 15, 2003 at 10:03:28AM -0800, jw schultz wrote:
>
> > The one thing i really would have liked to have seen in a version bump
> > would have been changing the default remote shell to ssh instead of
> > rsh/remsh.
>
> I can see this being both a good thing (since I think it is a better
>
2002 Jan 31
2
configure --with-rsh=CMD and default blocking-IO support
...19 @@
server_options(args,&argc);
-
- if (strcmp(cmd, RSYNC_RSH) == 0) blocking_io = 1;
+ if (*cmd == '@') {
+ if (*++cmd == '@') {
+ cmd++;
+ blocking_io = 0;
+ } else
+ blocking_io = 1;
+ args[0] = cmd;
+ } else if (strcmp(cmd, "rsh") == 0
+#if HAVE_REMSH
+ || strcmp(cmd, "remsh") == 0
+#endif
+ )
+ blocking_io = 1;
}
args[argc++] = ".";
Index: rsync/rsync.h
--- rsync/rsync.h 25 Jan 2002 23:00:21 -0000 1.121
+++ rsync/rsync.h 30 Jan 2002 18:45:29 -0000
@@ -85,10 +85,12 @@
#include "config.h"
+#ifndef RS...
2004 Oct 13
0
[Bug 1924] New: unable to rsync between a PC with cygwin and a unix machine using rsh
...tok(NULL, " "))
args[argc++] = tok;
/* check to see if we've already been given '-l user' in
* the remote-shell command */
for (i = 0; i < argc-1; i++) {
if (!strcmp(args[i], "-l") && args[i+1][0] != '-')
dash_l_set = 1;
}
#if HAVE_REMSH
/* remsh (on HPUX) takes the arguments the other way around */
args[argc++] = machine;
if (user && !(daemon_over_rsh && dash_l_set)) {
args[argc++] = "-l";
args[argc++] = user;
}
#else
if (user && !(daemon_over_rsh && dash_l_set)) {
args[...
2003 Oct 03
2
Cygwin/rsync Hang Problem Testing Results
People of cygwin & rsync,
I recently attempted to get cygwin and rsync working to solve a
backup/mirroring need in my computer life. Well, as you might guess, I
ran into a little but of trouble.
Strangely enough, rsync seemed to be regularly hanging when I attempted
to do a "get" (sycronize a remote to a local dir). Well, considering I
want to automate this, that was not going
2003 Jun 25
3
patch draft for extended attributes on linux
...#include "config.h"
+#define SUPPORT_LINKS HAVE_READLINK
+#define SUPPORT_HARD_LINKS HAVE_LINK
+#define SUPPORT_XATTRS HAVE_LGETXATTR
+
/* The default RSYNC_RSH is always set in config.h, either to "remsh",
* "rsh", or otherwise something specified by the user. HAVE_REMSH
* controls parameter munging for HP/UX, etc. */
@@ -335,6 +339,8 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2
#define IN_LOOPBACKNET 127
#endif
+struct xa_list;
+
struct file_struct {
unsigned flags;
time_t modtime;
@@ -354,6 +360,10 @@ struct file_struct {
char *basedir;
char *link;...