diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-10-04 12:38:00 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-10-08 01:43:38 +0200 |
commit | 29dbda56b5ba6db9fd04cdea1de377630bea9016 (patch) | |
tree | 5576242084d79a7ea041ed7e60010d0374d78641 /source3/wscript | |
parent | 09731c76877137291f0041711f01b40e33eb3d1c (diff) | |
download | samba-29dbda56b5ba6db9fd04cdea1de377630bea9016.tar.gz samba-29dbda56b5ba6db9fd04cdea1de377630bea9016.tar.bz2 samba-29dbda56b5ba6db9fd04cdea1de377630bea9016.zip |
s3:modules: add vfs_dfs_samba4
This module overloads the SMB_VFS_GET_DFS_REFERRAL() hooks,
in order to support the domain, dc and sysvol referrals
for a AD DC.
The config would look like this:
[IPC$]
vfs objects = dfs_samba4
metze
Diffstat (limited to 'source3/wscript')
-rw-r--r-- | source3/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/wscript b/source3/wscript index 1d40998adb..87cc2d4975 100644 --- a/source3/wscript +++ b/source3/wscript @@ -1661,7 +1661,7 @@ main() { default_static_modules.extend(TO_LIST('pdb_ads auth_netlogond charset_weird')) default_shared_modules.extend(TO_LIST('perfcount_test')) - default_static_modules.extend(TO_LIST('pdb_samba4 auth_samba4')) + default_static_modules.extend(TO_LIST('pdb_samba4 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')) |