diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-09-04 10:27:50 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-09-04 04:45:16 +0200 |
commit | 9983ad7a80477d8aaaa16488a93dffc6a32dd1ef (patch) | |
tree | 97464121bcb8ef06ad31f09074b800b929ba1465 /source3/wscript | |
parent | 68f68d01529e159d965cefa1da497f3472a36972 (diff) | |
download | samba-9983ad7a80477d8aaaa16488a93dffc6a32dd1ef.tar.gz samba-9983ad7a80477d8aaaa16488a93dffc6a32dd1ef.tar.bz2 samba-9983ad7a80477d8aaaa16488a93dffc6a32dd1ef.zip |
s3-passdb: Rename pdb_samba4 to samba_dsdb and autoconfigure when we are a AD DC
The name samba_dsdb is not ideal, but it matches the primary ldb
module we use, and more importantly it avoids having '4' in the name.
We should slowly avoid using the term samba4 in long-term places like
the smb.conf because it is confusing to users given we are shipping
Samba 4.0 as an AD DC as well as all the other supported roles (domain
member/standalone server/classic DC)
Additionally, samba4 will be an odd name when we eventually release
Samba 5.0!
samba4 remains accepted as an alias to ensure existing smb.conf files
load, but to allow changes here in the future, we set the value during
the smb.conf load, and not during the provision when we are an AD DC.
This simplifies the default smb.conf for the vast majority of our
users and reduces the number of things listed in smb.conf files that
we later have to work around if we wish to change the
name/implementation of the passdb glue module again.
Andrew Bartlett
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Tue Sep 4 04:45:16 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/wscript')
-rwxr-xr-x | source3/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/wscript b/source3/wscript index 9869a90296..a4ad79b48a 100755 --- a/source3/wscript +++ b/source3/wscript @@ -1473,7 +1473,7 @@ main() { if conf.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'): - default_static_modules.extend(TO_LIST('pdb_samba4 auth_samba4 vfs_dfs_samba4')) + default_static_modules.extend(TO_LIST('pdb_samba_dsdb auth_samba4 vfs_dfs_samba4')) if Options.options.with_acl_support and conf.CONFIG_SET('HAVE_POSIX_ACLS'): default_static_modules.extend(TO_LIST('vfs_posixacl')) |