From 7e90a064437790789726d701ada5de9503816281 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 27 Oct 2012 09:20:52 +1100 Subject: provision: Fix comments in checksysvolacl --- source4/scripting/python/samba/provision/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source4/scripting/python/samba/provision/__init__.py b/source4/scripting/python/samba/provision/__init__.py index f6c11b5159..b38555608b 100644 --- a/source4/scripting/python/samba/provision/__init__.py +++ b/source4/scripting/python/samba/provision/__init__.py @@ -1559,8 +1559,9 @@ def checksysvolacl(samdb, netlogon, sysvol, domainsid, dnsdomain, domaindn, if domain_info["dns_domain"].upper() != dnsdomain.upper(): raise ProvisioningError('Realm as seen by pdb_samba_dsdb [%s] does not match Realm as seen by the provision script [%s]!' % (domain_info["dns_domain"].upper(), dnsdomain.upper())) - # Set the SYSVOL_ACL on the sysvol folder and subfolder (first level) + # Ensure we can read this directly, and via the smbd VFS for direct_db_access in [True, False]: + # Check the SYSVOL_ACL on the sysvol folder and subfolder (first level) for dir_path in [os.path.join(sysvol, dnsdomain), netlogon]: fsacl = getntacl(lp, dir_path, direct_db_access=direct_db_access) if fsacl is None: -- cgit