Displaying 11 results from an estimated 11 matches for "fn_local_integer".
2002 Mar 15
1
disabling offline caching from samba
I'm preparing to roll out a bunch of win XP clients and and am running
down all the quirks
that come up in the application log on my test box.
1) AutoEnrollement fails - samba is not an active directory so this
makes sense
it must be disabled by editing the group policy
with gpedit.msc
computer configuration->windows settings -> security settings -> public
key policies ->
2003 Mar 11
0
PATCH: rsyncd.conf permission options
...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, force_create_mode)
+FN_LOCAL_INTEGER(lp_directory_mask, directory_mask)
+FN_LOCAL_INTEGER(lp_force_directory_mode, force_directory_mode)...
2011 Nov 28
0
RFC: [PATCH] Add TCP congestion control and Diffserv options
...rs, auth_users)
FN_LOCAL_STRING(lp_charset, charset)
FN_LOCAL_STRING(lp_comment, comment)
+FN_LOCAL_STRING(lp_congestion_alg, congestion_alg)
FN_LOCAL_STRING(lp_dont_compress, dont_compress)
FN_LOCAL_STRING(lp_exclude, exclude)
FN_LOCAL_STRING(lp_exclude_from, exclude_from)
@@ -481,6 +488,7 @@ FN_LOCAL_INTEGER(lp_max_connections, max_connections)
FN_LOCAL_INTEGER(lp_max_verbosity, max_verbosity)
FN_LOCAL_INTEGER(lp_syslog_facility, syslog_facility)
FN_LOCAL_INTEGER(lp_timeout, timeout)
+FN_LOCAL_INTEGER(lp_diffserv, diffserv)
FN_LOCAL_BOOL(lp_fake_super, fake_super)
FN_LOCAL_BOOL(lp_forward_lookup...
2007 Oct 10
0
patch for rsync: provides "nice = N" option
...ot;transfer logging", P_BOOL, P_LOCAL, &sDefault.transfer_logging, NULL,0},
{"uid", P_STRING, P_LOCAL, &sDefault.uid, NULL,0},
{"use chroot", P_BOOL, P_LOCAL, &sDefault.use_chroot, NULL,0},
@@ -411,6 +414,7 @@
FN_LOCAL_INTEGER(lp_max_connections, max_connections)
FN_LOCAL_INTEGER(lp_max_verbosity, max_verbosity)
FN_LOCAL_INTEGER(lp_timeout, timeout)
+FN_LOCAL_INTEGER(lp_nice, niceval)
FN_LOCAL_BOOL(lp_ignore_errors, ignore_errors)
FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable)
--- proto.h.orig 2007-08-19...
2003 Feb 12
2
rsync & ldap authentication
...@ -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_LOCAL_STRING(lp_dont_compress, dont_compress)
FN_LOCAL_INTEGER(lp_timeout, timeout)
FN_LOCAL_INTEGER(lp_max_connections, max_connections)
+
+FN_GLOBAL_STRING(lp_ldap_server, &Globals.ldap_server)
+FN_GLOBAL_INTEGER(lp_ldap_port, &Globals.ldap_port)
+FN_GLOBAL_STRING(lp_ldap_root, &Globals.ldap_root)
+FN_GLOBAL_STRING(lp_ldap_root_passwd, &Glob...
2003 Jun 07
1
patch to rsync to add options for pre- and post-transfer commands
...,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_STRING(lp_postscript, postscript)
/* local prototypes */
static int strwicmp( char *psz1, char *psz2 );
diff --exclude='*.o' -b --context rsync-2.5.6....
2003 May 03
0
Storing rsync secrets in LDAP
...5,9 @@
#ifdef LOG_DAEMON
Globals.syslog_facility = LOG_DAEMON;
#endif
+#ifdef WITH_LDAP
+ Globals.ldap_port = LDAP_PORT;
+#endif
}
/***************************************************************************
@@ -363,6 +404,21 @@
FN_LOCAL_STRING(lp_dont_compress, dont_compress)
FN_LOCAL_INTEGER(lp_timeout, timeout)
FN_LOCAL_INTEGER(lp_max_connections, max_connections)
+
+FN_GLOBAL_STRING(lp_ldap_server, &Globals.ldap_server)
+FN_GLOBAL_INTEGER(lp_ldap_port, &Globals.ldap_port)
+FN_GLOBAL_STRING(lp_ldap_root, &Globals.ldap_root)
+FN_GLOBAL_STRING(lp_ldap_root_passwd, &Glob...
2008 Dec 23
0
[jra@samba.org: Patch to improve Samba write speeds on Linux ext3 with 3.2.x]
....flags = FLAG_ADVANCED | FLAG_SHARE,
},
{
@@ -5274,7 +5289,7 @@ FN_LOCAL_PARM_BOOL(lp_manglednames, bMangledNames)
FN_LOCAL_BOOL(lp_widelinks, bWidelinks)
FN_LOCAL_BOOL(lp_symlinks, bSymlinks)
FN_LOCAL_BOOL(lp_syncalways, bSyncAlways)
-FN_LOCAL_BOOL(lp_strict_allocate, bStrictAllocate)
+FN_LOCAL_INTEGER(lp_strict_allocate, iStrictAllocate)
FN_LOCAL_BOOL(lp_strict_sync, bStrictSync)
FN_LOCAL_BOOL(lp_map_system, bMap_system)
FN_LOCAL_BOOL(lp_delete_readonly, bDeleteReadonly)
diff --git a/source/smbd/fileio.c b/source/smbd/fileio.c
index 60aeeef..e23f391 100644
--- a/source/smbd/fileio.c
+++ b/sou...
2003 Dec 01
0
No subject
...0A=
+ Globals.winbind_primary_group =3D 0; /* use primary group from =
domain */=0A=
+ Globals.bWinbindForcePrimary =3D False; /* True to force membership =
to primary_group */=0A=
=0A=
Globals.bWinbindEnumUsers =3D True;=0A=
Globals.bWinbindEnumGroups =3D True;=0A=
@@ -1787,6 +1793,8 @@=0A=
FN_LOCAL_INTEGER(lp_write_cache_size, iWriteCacheSize)=0A=
FN_LOCAL_CHAR(lp_magicchar, magic_char)=0A=
FN_GLOBAL_INTEGER(lp_winbind_cache_time, =
&Globals.winbind_cache_time)=0A=
+FN_GLOBAL_INTEGER(lp_winbind_primary_group, =
&Globals.winbind_primary_group)=0A=
+FN_GLOBAL_BOOL(lp_winbind_force_primary, =...
1999 Jul 02
1
preexec: return code not used? (PR#18576)
T.D.Lee@durham.ac.uk wrote:
>
>
> But we'd like to go one step further and have the return code from preexec
> be used to continue or abort the connection being established. The script
> above would be modified to generate this return code.
>
> Looking through the source code (smbd/service.c), it doesn't seem to check
> the return code (calling smbrun to do the
2004 Mar 10
4
HFS+ resource forks: WIP patch included
..., 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_dont_compress, dont_compress)
FN_LOCAL_INTEGER(lp_timeout, timeout)
diff -u rsync-2.6.0/options.c rsync-2.6.0-dar/options.c
--- rsync-2.6.0/options.c Tue Dec 30 13:16:25 2003
+++ rsync-2.6.0-dar/options.c Mon Mar 8 16:51:57 2004
@@ -113,6 +113,7 @@
char *config_file = NULL;
char *shell_cmd = NULL;
char *log_format = NULL;
+char *hfs_mode =...