search for: ignore_nonreadable

Displaying 9 results from an estimated 9 matches for "ignore_nonreadable".

2007 Oct 10
0
patch for rsync: provides "nice = N" option
...ir = lp_temp_dir(i); if (strlen(tmpdir) >= MAXPATHLEN - 10) { --- loadparm.c.orig 2007-08-19 07:28:25.000000000 +0000 +++ loadparm.c 2007-08-19 07:39:00.000000000 +0000 @@ -149,6 +149,7 @@ int max_verbosity; int syslog_facility; int timeout; + int niceval; BOOL ignore_errors; BOOL ignore_nonreadable; @@ -196,6 +197,7 @@ /* max_verbosity; */ 1, /* syslog_facility; */ LOG_DAEMON, /* timeout; */ 0, + /* nice; */ 0, /* ignore_errors; */ False, /* ignore_nonreadable; */ False, @@ -327,6 +329,7 @@ {"syslog facility", P_ENUM, P_LOCAL, &sDefault.syslog_facility,...
2002 Feb 24
2
Write-only option
...L, &sDefault.write_only, NULL, 0}, {"list", 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, t...
2001 Dec 03
2
Bug in rsyncd 2.5.0 while handling config file string values
...ct_modes = 1, exclude = 0x0, exclude_from = 0x0, include = 0x0, include_from = 0x0, log_format = 0x80767f3 "%o %h [%a] %m (%u) %f %l", refuse_options = 0x0, dont_compress = 0x80767c0 "*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz", timeout = 0, max_connections = 0, ignore_nonreadable = 0} (gdb) shell cat ../rsyncd.conf uid = foobar (gdb) -- Heikki Vatiainen * hessu@cs.tut.fi Tampere University of Technology * Tampere, Finland
2004 Feb 12
1
[PATCH] write only
...L, &sDefault.write_only, NULL, 0}, {"list", 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}, @@ -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)...
2003 Mar 11
0
PATCH: rsyncd.conf permission options
....de | +49 431 988-1260 -------------- next part -------------- diff -ur rsync-2.5.5/loadparm.c rsync-2.5.5-umask/loadparm.c --- rsync-2.5.5/loadparm.c Mon Mar 25 05:04:23 2002 +++ rsync-2.5.5-umask/loadparm.c Sun Mar 2 22:53:16 2003 @@ -140,6 +140,10 @@ int timeout; int max_connections; BOOL ignore_nonreadable; + int create_mask; + int force_create_mode; + int directory_mask; + int force_directory_mode; } service; @@ -180,7 +184,11 @@ "*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz", /* dont compress */ 0, /* timeout */ 0, /* max connections */ - False /* ign...
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
2003 Feb 12
2
rsync & ldap authentication
...") @@ -96,6 +102,11 @@ char *pid_file; int syslog_facility; char *socket_options; + char *ldap_server; + int ldap_port; + char *ldap_root; + char *ldap_root_passwd; + char *ldap_suffix; } global; static global Globals; @@ -133,6 +144,13 @@ int timeout; int max_connections; BOOL ignore_nonreadable; + char *ldap_filter; + char *ldap_passwd_attribute; + char *ldap_auth_usergroup; + char *ldap_auth_users_attribute; +#ifdef WITH_MANGLE_USER + char *mangle_user; +#endif } service; @@ -164,7 +182,15 @@ "*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz", /* dont compress */...
2003 Jun 07
1
patch to rsync to add options for pre- and post-transfer commands
...o' -b --context rsync-2.5.6.orig/loadparm.c rsync-2.5.6/loadparm.c *** rsync-2.5.6.orig/loadparm.c 2002-08-30 17:27:26.000000000 -0600 --- rsync-2.5.6/loadparm.c 2003-04-27 20:25:42.000000000 -0600 *************** *** 140,145 **** --- 140,147 ---- int timeout; int max_connections; BOOL ignore_nonreadable; + char *prescript; + char *postscript; } service; *************** *** 180,186 **** "*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz", /* dont compress */ 0, /* timeout */ 0, /* max connections */ ! False /* ignore nonreadable */ }; ---...
2003 May 03
0
Storing rsync secrets in LDAP
...slog_facility; char *socket_options; + char *ldap_server; + int ldap_port; + char *ldap_root; + char *ldap_root_passwd; + char *ldap_suffix; } global; static global Globals; @@ -138,6 +149,13 @@ int timeout; int max_connections; BOOL ignore_nonreadable; + char *ldap_filter; + char *ldap_passwd_attribute; + char *ldap_auth_usergroup; + char *ldap_auth_users_attribute; +#ifdef WITH_MANGLE_USER + char *mangle_user; +#endif } service; @@ -169,7 +187,15 @@ "*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *...