diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-05-02 11:45:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:51:43 -0500 |
commit | 63a41d7d4dbdf04b9718757886fdd087ad597d30 (patch) | |
tree | 6985798ab4f684d492b1836d38aae6ec15d84318 | |
parent | cac54feea80f512bf6b74185025cbe4cdade7702 (diff) | |
download | samba-63a41d7d4dbdf04b9718757886fdd087ad597d30.tar.gz samba-63a41d7d4dbdf04b9718757886fdd087ad597d30.tar.bz2 samba-63a41d7d4dbdf04b9718757886fdd087ad597d30.zip |
r448: Fix 'auth' in Samba4, by making 'auth methods' a normal smb.conf
paramter, without special links to other variables.
When we get 'server role' ideas back into Samba4, we can fix this properly.
The default is:
guest, sam_ignoredomain
which is the expected behaviour for a stand-alone server.
Andrew Bartlett
(This used to be commit 56ebc4275fedc8141d43a4ae9a4f4f0e1eccaf49)
-rw-r--r-- | source4/auth/auth.c | 41 | ||||
-rw-r--r-- | source4/param/loadparm.c | 2 |
2 files changed, 2 insertions, 41 deletions
diff --git a/source4/auth/auth.c b/source4/auth/auth.c index 714bb37c6d..720b8149bd 100644 --- a/source4/auth/auth.c +++ b/source4/auth/auth.c @@ -377,47 +377,6 @@ NTSTATUS make_auth_context_subsystem(struct auth_context **auth_context) return NT_STATUS_NO_MEMORY; } - if (auth_method_list == NULL) { - switch (lp_security()) - { - case SEC_DOMAIN: - DEBUG(5,("Making default auth method list for security=domain\n")); - auth_method_list = str_list_make("guest sam winbind:ntdomain", NULL); - break; - case SEC_SERVER: - DEBUG(5,("Making default auth method list for security=server\n")); - auth_method_list = str_list_make("guest sam smbserver", NULL); - break; - case SEC_USER: - if (lp_encrypted_passwords()) { - DEBUG(5,("Making default auth method list for security=user, encrypt passwords = yes\n")); - auth_method_list = str_list_make("guest sam", NULL); - } else { - DEBUG(5,("Making default auth method list for security=user, encrypt passwords = no\n")); - auth_method_list = str_list_make("guest unix", NULL); - } - break; - case SEC_SHARE: - if (lp_encrypted_passwords()) { - DEBUG(5,("Making default auth method list for security=share, encrypt passwords = yes\n")); - auth_method_list = str_list_make("guest sam", NULL); - } else { - DEBUG(5,("Making default auth method list for security=share, encrypt passwords = no\n")); - auth_method_list = str_list_make("guest unix", NULL); - } - break; - case SEC_ADS: - DEBUG(5,("Making default auth method list for security=ADS\n")); - auth_method_list = str_list_make("guest sam winbind:ntdomain", NULL); - break; - default: - DEBUG(5,("Unknown auth method!\n")); - return NT_STATUS_UNSUCCESSFUL; - } - } else { - DEBUG(5,("Using specified auth order\n")); - } - if (!NT_STATUS_IS_OK(nt_status = make_auth_context_text_list(auth_context, auth_method_list))) { str_list_free(&auth_method_list); return nt_status; diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c index 90fc86380e..7218b2ecab 100644 --- a/source4/param/loadparm.c +++ b/source4/param/loadparm.c @@ -932,6 +932,8 @@ static void init_globals(void) Globals.dcerpc_ep_servers = str_list_make("epmapper srvsvc wkssvc rpcecho", NULL); + Globals.AuthMethods = str_list_make("guest sam_ignoredomain", NULL); + string_set(&Globals.szSMBPasswdFile, dyn_SMB_PASSWD_FILE); string_set(&Globals.szPrivateDir, dyn_PRIVATE_DIR); |