diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-06-10 21:33:45 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-06-15 10:51:34 +1000 |
commit | 7c60ac97bf72aa08df39aa9695607270e39931c5 (patch) | |
tree | 1d15467d8a5b584b1eb3a8c4715bb404a68a639b /source4/scripting/python | |
parent | 9e28ceda96a0c76752af851db4ccba86c010ed67 (diff) | |
download | samba-7c60ac97bf72aa08df39aa9695607270e39931c5.tar.gz samba-7c60ac97bf72aa08df39aa9695607270e39931c5.tar.bz2 samba-7c60ac97bf72aa08df39aa9695607270e39931c5.zip |
s4:provision Allow a specific prefix map to be loaded into a new schema provision
This allows the prefixMap from a DRS server to be used when loading
the schema from the local files. This helps us then import other
schema with this map in place.
Andrew Bartlett
Signed-off-by: Kamen Mazdrashki <kamenim@samba.org>
Diffstat (limited to 'source4/scripting/python')
-rw-r--r-- | source4/scripting/python/samba/schema.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/schema.py b/source4/scripting/python/samba/schema.py index bdc09cfd3a..bffb0e53da 100644 --- a/source4/scripting/python/samba/schema.py +++ b/source4/scripting/python/samba/schema.py @@ -166,7 +166,8 @@ def get_dnsyntax_attributes(schemadn,schemaldb): def ldb_with_schema(setup_dir=None, schemadn="cn=schema,cn=configuration,dc=example,dc=com", serverdn="cn=server,cn=servers,cn=default-first-site-name,cn=sites,cn=cn=configuration,dc=example,dc=com", - domainsid=None): + domainsid=None, + override_prefixmap=None): """Load schema for the SamDB from the AD schema files and samba4_schema.ldif :param setup_dir: Setup path @@ -185,4 +186,4 @@ def ldb_with_schema(setup_dir=None, domainsid = security.random_sid() else: domainsid = security.dom_sid(domainsid) - return Schema(setup_path, domainsid, schemadn=schemadn, serverdn=serverdn) + return Schema(setup_path, domainsid, schemadn=schemadn, serverdn=serverdn, override_prefixmap=override_prefixmap) |