search for: lp_path

Displaying 7 results from an estimated 7 matches for "lp_path".

Did you mean: mp_path
2002 Feb 24
2
Write-only option
...P_BOOL, P_LOCAL, &sDefault.list, NULL, 0}, {"use chroot", P_BOOL, P_LOCAL, &sDefault.use_chroot, NULL, 0}, {"ignore nonreadable",P_BOOL, P_LOCAL, &sDefault.ignore_nonreadable, NULL, 0}, @@ -342,6 +345,7 @@ FN_LOCAL_STRING(lp_path, path) FN_LOCAL_STRING(lp_lock_file, lock_file) FN_LOCAL_BOOL(lp_read_only, read_only) +FN_LOCAL_BOOL(lp_write_only, write_only) FN_LOCAL_BOOL(lp_list, list) FN_LOCAL_BOOL(lp_use_chroot, use_chroot) FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging) diff -urN rsync-2.5.2.orig/main.c rsync-2....
2001 Nov 20
2
rsync server over SSH [includes code patches]
...0,236 ---- if (!name_to_gid(p, &gid)) { if (!isdigit(*p)) { rprintf(FERROR,"Invalid gid %s\n", p); ! io_printf(f_out,"@ERROR: invalid 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 faile...
2004 Feb 12
1
[PATCH] write only
...ault.list, NULL, 0}, {"use chroot", P_BOOL, P_LOCAL, &sDefault.use_chroot, NULL, 0}, {"ignore nonreadable",P_BOOL, P_LOCAL, &sDefault.ignore_nonreadable, NULL, 0}, @@ -353,6 +356,7 @@ FN_LOCAL_STRING(lp_comment, comment) FN_LOCAL_STRING(lp_path, path) FN_LOCAL_STRING(lp_lock_file, lock_file) FN_LOCAL_BOOL(lp_read_only, read_only) +FN_LOCAL_BOOL(lp_write_only, write_only) FN_LOCAL_BOOL(lp_list, list) FN_LOCAL_BOOL(lp_use_chroot, use_chroot) FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging) --- rsync-2.6.0/proto.h.orig Thu Feb 12...
2003 Feb 22
1
rsync ported to BeOS-bone
...rver.c Thu Feb 20 21:06:41 2003 @@ -314,11 +314,16 @@ * a warning, unless a "require chroot" flag is set, * in which case we fail. */ +#ifndef HAVE_CHROOT + io_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)); dif...
2002 Jun 18
2
rsyncd + scripting
Hey all, Like a lot of folks, I use rsync to pull content out to production web servers. Tastes great, less filling. Here's what I'd like to be able to do: Sometimes a web tree is not ready to sync, for whatever reason. I have many modules available, so stopping ryncd is not an option. I'd like to be able to tell rsync in daemon mode "this particular module is not available at
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
2007 Sep 22
0
rsync build on IA64 using icc
...valuated in unspecified order lp_lock_file(i)); ^ clientserver.c(307): remark #981: operands are evaluated in unspecified order rsyserr(FLOG, errno, "failed to open lock file %s", ^ clientserver.c(505): remark #981: operands are evaluated in unspecified order lp_path(i)); ^ clientserver.c(504): remark #981: operands are evaluated in unspecified order rsyserr(FLOG, errno, "chroot %s failed", ^ clientserver.c(512): remark #981: operands are evaluated in unspecified order lp_path(i)); ^ clientserver.c(511): remark #981: ope...