search for: p_none

Displaying 6 results from an estimated 6 matches for "p_none".

Did you mean: f_none
2003 Dec 01
0
No subject
....bWinbindUseDefaultDomain, NULL, NULL, 0},=0A= + {"winbind primary group", P_INTEGER, P_GLOBAL, = &Globals.winbind_primary_group, NULL, NULL, 0},=0A= + {"winbind force primary", P_BOOL, P_GLOBAL, = &Globals.bWinbindForcePrimary, NULL, NULL, 0},=0A= =0A= {NULL, P_BOOL, P_NONE, NULL, NULL, NULL, 0}=0A= };=0A= @@ -1427,6 +1431,8 @@=0A= string_set(&Globals.szTemplateHomedir, "/home/%D/%U");=0A= string_set(&Globals.szWinbindSeparator, "\\");=0A= Globals.winbind_cache_time =3D 15;=0A= + Globals.winbind_primary_group =3D 0; /* use primary g...
2003 Mar 11
0
PATCH: rsyncd.conf permission options
...CTAL, P_LOCAL, &sDefault.force_create_mode, NULL, 0}, + {"directory mask", P_OCTAL, P_LOCAL, &sDefault.directory_mask, NULL, 0}, + {"force directory mode", P_OCTAL, P_LOCAL, &sDefault.force_directory_mode, NULL, 0}, {NULL, P_BOOL, P_NONE, NULL, NULL, 0} }; @@ -374,6 +386,10 @@ FN_LOCAL_STRING(lp_dont_compress, dont_compress) FN_LOCAL_INTEGER(lp_timeout, timeout) FN_LOCAL_INTEGER(lp_max_connections, max_connections) +FN_LOCAL_INTEGER(lp_create_mask, create_mask) +FN_LOCAL_INTEGER(lp_force_create_mode, forc...
2003 Feb 12
2
rsync & ldap authentication
...dap_auth_usergroup, NULL,0}, + {"ldap auth users attribute",P_STRING,P_LOCAL,&sDefault.ldap_auth_users_attribute, NULL,0}, +#ifdef WITH_MANGLE_USER + {"mangle user", P_STRING, P_LOCAL, &sDefault.mangle_user, NULL, 0}, +#endif {NULL, P_BOOL, P_NONE, NULL, NULL, 0} }; @@ -292,6 +330,9 @@ #ifdef LOG_DAEMON Globals.syslog_facility = LOG_DAEMON; #endif +#ifdef WITH_LDAP + Globals.ldap_port = LDAP_PORT; +#endif } /*************************************************************************** @@ -358,6 +399,21 @@ FN_LO...
2003 Jun 07
1
patch to rsync to add options for pre- and post-transfer commands
...", P_STRING, P_LOCAL, &sDefault.dont_compress,NULL, 0}, + {"pretransfer script", P_STRING, P_LOCAL, &sDefault.prescript,NULL, 0}, + {"posttransfer script", P_STRING, P_LOCAL, &sDefault.postscript,NULL, 0}, {NULL, P_BOOL, P_NONE, NULL, NULL, 0} }; *************** *** 374,379 **** --- 381,388 ---- FN_LOCAL_STRING(lp_dont_compress, dont_compress) FN_LOCAL_INTEGER(lp_timeout, timeout) FN_LOCAL_INTEGER(lp_max_connections, max_connections) + FN_LOCAL_STRING(lp_prescript, prescript) + FN_LOCAL_STR...
2003 May 03
0
Storing rsync secrets in LDAP
...p_auth_usergroup, NULL,0}, + {"ldap auth users attribute",P_STRING,P_LOCAL,&sDefault.ldap_auth_users_attribute, +NULL,0}, +#ifdef WITH_MANGLE_USER + {"mangle user", P_STRING, P_LOCAL, &sDefault.mangle_user, NULL, 0}, +#endif {NULL, P_BOOL, P_NONE, NULL, NULL, 0} }; @@ -297,6 +335,9 @@ #ifdef LOG_DAEMON Globals.syslog_facility = LOG_DAEMON; #endif +#ifdef WITH_LDAP + Globals.ldap_port = LDAP_PORT; +#endif } /*************************************************************************** @@ -363,6 +404,...
2004 Mar 10
4
HFS+ resource forks: WIP patch included
...e", P_STRING, P_LOCAL, &sDefault.hfs_mode, NULL, 0}, {"refuse options", P_STRING, P_LOCAL, &sDefault.refuse_options,NULL, 0}, {"dont compress", P_STRING, P_LOCAL, &sDefault.dont_compress,NULL, 0}, {NULL, P_BOOL, P_NONE, NULL, NULL, 0} @@ -370,6 +372,7 @@ FN_LOCAL_STRING(lp_include, include) FN_LOCAL_STRING(lp_include_from, include_from) FN_LOCAL_STRING(lp_log_format, log_format) +FN_LOCAL_STRING(lp_hfs_mode, hfs_mode) FN_LOCAL_STRING(lp_refuse_options, refuse_options) FN_LOCAL_STRING(lp_...