diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-06-03 10:54:06 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-06-16 08:18:10 +0200 |
commit | 9c715da1cbc256b9ae9298618c92807592607c9b (patch) | |
tree | 6541a67f90a5f89264866f7196488f8b50095cb5 /source3/wscript | |
parent | d949736f8dc02eec180723a55f4604b7b3aa83d8 (diff) | |
download | samba-9c715da1cbc256b9ae9298618c92807592607c9b.tar.gz samba-9c715da1cbc256b9ae9298618c92807592607c9b.tar.bz2 samba-9c715da1cbc256b9ae9298618c92807592607c9b.zip |
s3-passdb: Remove pdb_ads
pdb_ads was an important module in the development of the combined Samba 4.0, and
was the first module to show that standard samba3 tools such as smbpasswd can be
made to operate on the sam.ldb.
We now have pdb_samba4, which operates directly on the sam.ldb, rather than via
ldapi://, which uses transactions and which is supported and tested as part
of the official Samba 4.0 release configuration.
This module is not as complete (for example, it does not honour the idmap
configuration) and requires that the samba binary be running to operate.
Andrew Bartlett
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 4710d8059f..b0a4b6794f 100755 --- a/source3/wscript +++ b/source3/wscript @@ -1370,7 +1370,7 @@ main() { vfs_time_audit idmap_autorid''') if Options.options.developer: - default_static_modules.extend(TO_LIST('pdb_ads auth_netlogond charset_weird')) + default_static_modules.extend(TO_LIST('auth_netlogond charset_weird')) default_shared_modules.extend(TO_LIST('perfcount_test')) default_shared_modules.extend(TO_LIST('vfs_skel_opaque vfs_skel_transparent vfs_shadow_copy_test')) default_shared_modules.extend(TO_LIST('auth_skel pdb_test')) |