diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-10-19 09:12:57 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-10-19 18:57:00 +1100 |
commit | 4d9b12ae8f9fc7c097b94e6c02df3cb1c38a52ce (patch) | |
tree | af25af4b2adbf65d3489a18697be378cfcdfa9aa /source4/scripting/bin | |
parent | 640fbf833b824d3c4c2ecfecdb75fade2ef70fa9 (diff) | |
download | samba-4d9b12ae8f9fc7c097b94e6c02df3cb1c38a52ce.tar.gz samba-4d9b12ae8f9fc7c097b94e6c02df3cb1c38a52ce.tar.bz2 samba-4d9b12ae8f9fc7c097b94e6c02df3cb1c38a52ce.zip |
s4-provision Remove serverdn parameter from Schema()
We don't need to know the server DN here any more, and it
makes no sense for many callers.
Andrew Bartlett
Diffstat (limited to 'source4/scripting/bin')
-rwxr-xr-x | source4/scripting/bin/upgradeprovision | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/scripting/bin/upgradeprovision b/source4/scripting/bin/upgradeprovision index 37c66b61a5..c4dcfbf774 100755 --- a/source4/scripting/bin/upgradeprovision +++ b/source4/scripting/bin/upgradeprovision @@ -1671,8 +1671,7 @@ if __name__ == '__main__': new_ldbs.startTransactions() # 12) - schema = Schema(setup_path, names.domainsid, schemadn=str(names.schemadn), - serverdn=str(names.serverdn)) + schema = Schema(setup_path, names.domainsid, schemadn=str(names.schemadn)) # We create a closure that will be invoked just before schema reload def schemareloadclosure(): basesam = Ldb(paths.samdb, session_info=session, credentials=creds, lp=lp, |