From e349316550fefcb7d991adfe66d5118baac24a01 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 17 Aug 2009 11:41:58 +1000 Subject: s4:provision Add comments to the provision script Hopefully this will explain a bit more whey things are done the way that they are done. Andrew Bartlett --- source4/scripting/python/samba/provision.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'source4/scripting/python') diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py index 34af462ebf..c029bea848 100644 --- a/source4/scripting/python/samba/provision.py +++ b/source4/scripting/python/samba/provision.py @@ -835,10 +835,18 @@ def setup_samdb(path, setup_path, session_info, credentials, lp, samdb.transaction_start() try: message("Erasing data from partitions") - # Load the schema (again). This time it will force a reindex, to make the below computationally sane + # Load the schema (again). This time it will force a reindex, + # and will therefore make the erase_partitions() below + # computationally sane samdb.set_schema_from_ldb(schema.ldb) samdb.erase_partitions() + # Set the domain functionality levels onto the database. + # Various module (the password_hash module in particular) need + # to know what level of AD we are emulating. + + # These will be fixed into the database via the database + # modifictions below, but we need them set from the start. samdb.set_opaque_integer("domainFunctionality", domainFunctionality) samdb.set_opaque_integer("forestFunctionality", forestFunctionality) samdb.set_opaque_integer("domainControllerFunctionality", domainControllerFunctionality) @@ -888,6 +896,7 @@ def setup_samdb(path, setup_path, session_info, credentials, lp, "SCHEMADN": names.schemadn, }) + # The LDIF here was created when the Schema object was constructed message("Setting up sam.ldb schema") samdb.add_ldif(schema.schema_dn_add) samdb.modify_ldif(schema.schema_dn_modify) -- cgit