mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
make sure to always use string version of uuid rather than object.
(This used to be commit bcd5fc7dc9
)
This commit is contained in:
parent
8c926a34c8
commit
251f6bd991
@ -689,6 +689,7 @@ def setup_self_join(samdb, names,
|
||||
domainsid, invocationid, setup_path,
|
||||
policyguid):
|
||||
"""Join a host to its own domain."""
|
||||
assert isinstance(invocationid, str)
|
||||
setup_add_ldif(samdb, setup_path("provision_self_join.ldif"), {
|
||||
"CONFIGDN": names.configdn,
|
||||
"SCHEMADN": names.schemadn,
|
||||
@ -910,7 +911,7 @@ def provision(setup_dir, message, session_info,
|
||||
domainsid = security.Sid(domainsid)
|
||||
|
||||
if policyguid is None:
|
||||
policyguid = uuid.uuid4()
|
||||
policyguid = str(uuid.uuid4())
|
||||
if adminpass is None:
|
||||
adminpass = misc.random_password(12)
|
||||
if krbtgtpass is None:
|
||||
@ -960,7 +961,7 @@ def provision(setup_dir, message, session_info,
|
||||
|
||||
assert serverrole in ("domain controller", "member server", "standalone")
|
||||
if invocationid is None and serverrole == "domain controller":
|
||||
invocationid = uuid.uuid4()
|
||||
invocationid = str(uuid.uuid4())
|
||||
|
||||
if not os.path.exists(paths.private_dir):
|
||||
os.mkdir(paths.private_dir)
|
||||
|
@ -29,18 +29,18 @@ import uuid
|
||||
class SamDBTestCase(TestCaseInTempDir):
|
||||
def setUp(self):
|
||||
super(SamDBTestCase, self).setUp()
|
||||
invocationid = uuid.uuid4()
|
||||
invocationid = str(uuid.uuid4())
|
||||
domaindn = "DC=COM,DC=EXAMPLE"
|
||||
self.domaindn = domaindn
|
||||
configdn = "CN=Configuration," + domaindn
|
||||
schemadn = "CN=Schema," + configdn
|
||||
domainguid = uuid.uuid4()
|
||||
policyguid = uuid.uuid4()
|
||||
domainguid = str(uuid.uuid4())
|
||||
policyguid = str(uuid.uuid4())
|
||||
setup_path = lambda x: os.path.join("setup", x)
|
||||
creds = Credentials()
|
||||
creds.set_anonymous()
|
||||
domainsid = security.random_sid()
|
||||
hostguid = uuid.uuid4()
|
||||
hostguid = str(uuid.uuid4())
|
||||
path = os.path.join(self.tempdir, "samdb.ldb")
|
||||
self.samdb = setup_samdb(path, setup_path, system_session(), creds,
|
||||
cmdline_loadparm, schemadn, configdn,
|
||||
|
Loading…
Reference in New Issue
Block a user