mirror of
https://github.com/samba-team/samba.git
synced 2025-02-04 17:47:26 +03:00
s4-dbcheck: Add lastKnownParent when moving an object to lostAndFound
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Sat Jul 28 05:40:43 CEST 2012 on sn-devel-104
This commit is contained in:
parent
dc00df2add
commit
6a37b55dfb
@ -366,6 +366,9 @@ newSuperior: %s""" % (str(from_dn), str(to_rdn), str(to_base)))
|
||||
self.report('Not moving object %s into LostAndFound' % (obj.dn))
|
||||
return
|
||||
|
||||
keep_transaction = True
|
||||
self.samdb.transaction_start()
|
||||
try:
|
||||
nc_root = self.samdb.get_nc_root(obj.dn);
|
||||
lost_and_found = self.samdb.get_wellknown_dn(nc_root, dsdb.DS_GUID_LOSTANDFOUND_CONTAINER)
|
||||
new_dn = ldb.Dn(self.samdb, str(obj.dn))
|
||||
@ -374,6 +377,24 @@ newSuperior: %s""" % (str(from_dn), str(to_rdn), str(to_base)))
|
||||
"Failed to rename object %s into lostAndFound at %s" % (obj.dn, new_dn + lost_and_found)):
|
||||
self.report("Renamed object %s into lostAndFound at %s" % (obj.dn, new_dn + lost_and_found))
|
||||
|
||||
m = ldb.Message()
|
||||
m.dn = obj.dn
|
||||
m['lastKnownParent'] = ldb.MessageElement(str(obj.dn.parent()), ldb.FLAG_MOD_REPLACE, 'lastKnownParent')
|
||||
|
||||
if self.do_modify(m, [],
|
||||
"Failed to set lastKnownParent on lostAndFound object at %s" % (new_dn + lost_and_found)):
|
||||
self.report("Set lastKnownParent on lostAndFound object at %s" % (new_dn + lost_and_found))
|
||||
keep_transaction = True
|
||||
except:
|
||||
self.samdb.transaction_cancel()
|
||||
raise
|
||||
|
||||
if keep_transaction:
|
||||
self.samdb.transaction_commit()
|
||||
else:
|
||||
self.samdb.transaction_cancel()
|
||||
|
||||
|
||||
def err_wrong_instancetype(self, obj, calculated_instancetype):
|
||||
'''handle a wrong instanceType'''
|
||||
self.report("ERROR: wrong instanceType %s on %s, should be %d" % (obj["instanceType"], obj.dn, calculated_instancetype))
|
||||
|
Loading…
x
Reference in New Issue
Block a user