diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-06-07 09:07:52 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-06-07 09:11:01 +1000 |
commit | 5197331fe5af0a53e02e642c9e006b19ae92ba19 (patch) | |
tree | 1a24207a9f8a72ea2f22c0e4d91076f37ba9fa80 /source4/param | |
parent | 56eab757d011f89553ac364d8aa4809ffbb6b500 (diff) | |
download | samba-5197331fe5af0a53e02e642c9e006b19ae92ba19.tar.gz samba-5197331fe5af0a53e02e642c9e006b19ae92ba19.tar.bz2 samba-5197331fe5af0a53e02e642c9e006b19ae92ba19.zip |
s4-auth Move default auth methods back into auth.c
This changes auth_methods_from_lp to no longer use the parametric
options, and to cope with ROLE_DOMAIN_BDC and ROLE_DOMAIN_PDC. This
will assist in calling the source4 auth subsystem with a source3
derived lp_ctx.
Andrew Bartlett
Diffstat (limited to 'source4/param')
-rw-r--r-- | source4/param/loadparm.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c index fba09fa2c4..ae29f69fea 100644 --- a/source4/param/loadparm.c +++ b/source4/param/loadparm.c @@ -2464,9 +2464,6 @@ struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx) lpcfg_do_global_parameter(lp_ctx, "ntptr providor", "simple_ldb"); /* the winbind method for domain controllers is for both RODC auth forwarding and for trusted domains */ - lpcfg_do_global_parameter(lp_ctx, "auth methods:domain controller", "anonymous sam_ignoredomain winbind"); - lpcfg_do_global_parameter(lp_ctx, "auth methods:member server", "anonymous sam winbind"); - lpcfg_do_global_parameter(lp_ctx, "auth methods:standalone", "anonymous sam_ignoredomain"); lpcfg_do_global_parameter(lp_ctx, "private dir", dyn_PRIVATE_DIR); lpcfg_do_global_parameter(lp_ctx, "spoolss database", "spoolss.ldb"); lpcfg_do_global_parameter(lp_ctx, "wins config database", "wins_config.ldb"); |