1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-05 04:59:08 +03:00

python: Add bindings for SamDB.set_invocation_id().

(This used to be commit c09efa7b77)
This commit is contained in:
Jelmer Vernooij
2008-01-24 22:08:39 +01:00
parent 52bc292f58
commit 859b847a68
4 changed files with 82 additions and 29 deletions

View File

@ -145,3 +145,10 @@ member: %s
def attach_schema_from_ldif(self, pf, df):
misc.dsdb_attach_schema_from_ldif_file(self, pf, df)
def set_invocation_id(self, invocation_id):
"""Set the invocation id for this SamDB handle.
:param invocation_id: GUID of the invocation id.
"""
misc.samdb_set_ntds_invocation_id(self, invocation_id)