sambaundoguididx: Add flags=ldb.FLG_DONT_CREATE_DB and port to Python3
authorAndrew Bartlett <abartlet@samba.org>
Mon, 20 May 2019 04:29:10 +0000 (16:29 +1200)
committerNoel Power <npower@samba.org>
Thu, 23 May 2019 14:25:52 +0000 (14:25 +0000)
In py3 we need to add an extra str() around the returned ldb value to
enable .split() to be used.

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed By: Noel Power <npower@samba.org>

Autobuild-User(master): Noel Power <npower@samba.org>
Autobuild-Date(master): Thu May 23 14:25:52 UTC 2019 on sn-devel-184

source4/scripting/bin/sambaundoguididx

index 00fe63897b42dc823e8ed6a3131817e5f4616a62..f67353ff361b7d5ef67540818f05865d7b049b1a 100755 (executable)
@@ -34,7 +34,9 @@ if opts.H is None:
 else:
     url = opts.H
 
-samdb = ldb.Ldb(url=url, options=["modules:"])
+samdb = ldb.Ldb(url=url,
+                flags=ldb.FLG_DONT_CREATE_DB,
+                options=["modules:"])
 
 partitions = samdb.search(base="@PARTITION",
                          scope=ldb.SCOPE_BASE,
@@ -58,10 +60,11 @@ privatedir = os.path.dirname(url)
 
 dbs = []
 for part in partitions[0]['partition']:
-    tdbname = part.split(":")[1]
-    tdbpath = os.path.join(privatedir, tdbname)
-
-    db = ldb.Ldb(url=tdbpath, options=["modules:"])
+    dbname = str(part).split(":")[1]
+    dbpath = os.path.join(privatedir, dbname)
+    db = ldb.Ldb(url="ldb://" + dbpath,
+                 options=["modules:"],
+                 flags=ldb.FLG_DONT_CREATE_DB)
     db.transaction_start()
     db.modify(modmsg)
     dbs.append(db)
@@ -73,7 +76,8 @@ samdb.transaction_commit()
 
 print("Re-opening with the full DB stack")
 samdb = SamDB(url=url,
-                          lp=lp_ctx)
+              flags=ldb.FLG_DONT_CREATE_DB,
+              lp=lp_ctx)
 print("Re-triggering another re-index")
 chk = dbcheck(samdb)