diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-09-11 21:46:58 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-09-11 22:03:45 +1000 |
commit | 0d6bc14225d910150dc9949b35e587aafe9922c7 (patch) | |
tree | 9eed8963b99d399275ba5a6d51069ac2666d393e /source4/param | |
parent | 81474df7858273024ae4e214dc339b0754c71048 (diff) | |
download | samba-0d6bc14225d910150dc9949b35e587aafe9922c7.tar.gz samba-0d6bc14225d910150dc9949b35e587aafe9922c7.tar.bz2 samba-0d6bc14225d910150dc9949b35e587aafe9922c7.zip |
s4-kcc: add a very simple KCC
A KCC is a 'Knowledge Consistency Checker', a fancy name for a daemon
that works out who will replicate with who in a AD domain. This
implements an extremely simple KCC task that just wants to replicate
with everyone :-)
Diffstat (limited to 'source4/param')
-rw-r--r-- | source4/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c index 11a9361442..21e01b74fd 100644 --- a/source4/param/loadparm.c +++ b/source4/param/loadparm.c @@ -2300,7 +2300,7 @@ struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx) lp_do_global_parameter(lp_ctx, "max connections", "-1"); lp_do_global_parameter(lp_ctx, "dcerpc endpoint servers", "epmapper srvsvc wkssvc rpcecho samr netlogon lsarpc spoolss drsuapi winreg dssetup unixinfo browser"); - lp_do_global_parameter(lp_ctx, "server services", "smb rpc nbt wrepl ldap cldap kdc drepl winbind ntp_signd"); + lp_do_global_parameter(lp_ctx, "server services", "smb rpc nbt wrepl ldap cldap kdc drepl winbind ntp_signd kcc"); lp_do_global_parameter(lp_ctx, "ntptr providor", "simple_ldb"); lp_do_global_parameter(lp_ctx, "auth methods:domain controller", "anonymous sam_ignoredomain"); lp_do_global_parameter(lp_ctx, "auth methods:member server", "anonymous sam winbind"); |