diff options
author | Nadezhda Ivanova <nivanova@samba.org> | 2011-01-17 17:48:36 +0200 |
---|---|---|
committer | Nadezhda Ivanova <nivanova@samba.org> | 2011-01-17 18:23:24 +0100 |
commit | 622ef6aed82a2f2f7748c2a88535486af77487de (patch) | |
tree | 69ef3556dc651aa8a9ab3fa09257be56bfc9d07a /source4/scripting | |
parent | 35d8b808005638e9fa33bf7983d449db34dfb761 (diff) | |
download | samba-622ef6aed82a2f2f7748c2a88535486af77487de.tar.gz samba-622ef6aed82a2f2f7748c2a88535486af77487de.tar.bz2 samba-622ef6aed82a2f2f7748c2a88535486af77487de.zip |
s4-provision: Fixed owner/group for hard-coded Sites descriptor.
We must not specify explicitly owner and group. As there is a difference between WIN_2003 and WIN_2008, we should let descriptor
module compute the correct default ones. Also removed inherited ACEs, they are ignored during SD creation anyway.
Autobuild-User: Nadezhda Ivanova <nivanova@samba.org>
Autobuild-Date: Mon Jan 17 18:23:24 CET 2011 on sn-devel-104
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/samba/provision/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source4/scripting/python/samba/provision/__init__.py b/source4/scripting/python/samba/provision/__init__.py index 3e402b2fd5..e200083a33 100644 --- a/source4/scripting/python/samba/provision/__init__.py +++ b/source4/scripting/python/samba/provision/__init__.py @@ -106,11 +106,9 @@ def find_setup_dir(): # "get_schema_descriptor" is located in "schema.py" def get_sites_descriptor(domain_sid): - sddl = "O:EAG:EAD:AI(A;;RPLCLORC;;;AU)" \ + sddl = "D:(A;;RPLCLORC;;;AU)" \ "(A;;RPWPCRCCLCLORCWOWDSW;;;EA)" \ "(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)" \ - "(A;CIID;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)" \ - "(A;CIID;RPWPCRCCLCLORCWOWDSDSW;;;DA)" \ "S:AI(AU;CISA;CCDCSDDT;;;WD)" \ "(OU;CIIOSA;CR;;f0f8ffab-1191-11d0-a060-00aa006c33ed;WD)" \ "(OU;CIIOSA;WP;f30e3bbe-9ff0-11d1-b603-0000f80367c1;bf967ab3-0de6-11d0-a285-00aa003049e2;WD)" \ |