diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-08-15 20:34:41 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-08-16 15:19:17 +1000 |
commit | 843e19eff40d300e1b671fb0e78300e6a4cc3683 (patch) | |
tree | 9323b8e0914c0374672128bfac83609b0dd24104 /source3/wscript | |
parent | 2129495319adda28dbe21e1ac9846fcae9373989 (diff) | |
download | samba-843e19eff40d300e1b671fb0e78300e6a4cc3683.tar.gz samba-843e19eff40d300e1b671fb0e78300e6a4cc3683.tar.bz2 samba-843e19eff40d300e1b671fb0e78300e6a4cc3683.zip |
s3-vfs: Add new VFS module to fake setting an ACL
The purpose of this module is to remove the relience on the system having ACL support
to test NT ACLs.
Andrew Bartlett
Diffstat (limited to 'source3/wscript')
-rwxr-xr-x | source3/wscript | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/wscript b/source3/wscript index ee95b23066..9b059fa1b3 100755 --- a/source3/wscript +++ b/source3/wscript @@ -1469,6 +1469,10 @@ main() { 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')) + if Options.options.enable_selftest or Options.options.developer: + default_shared_modules.extend(TO_LIST('vfs_fake_acls')) + + if conf.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'): default_static_modules.extend(TO_LIST('pdb_samba4 auth_samba4 vfs_dfs_samba4')) |