From aabd89d8f7d80d614c941111d7a049f9f35b943b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 15 Sep 2010 18:52:11 +1000 Subject: [PATCH] s4-pyjoin: use new pynet finddc interface Pair-Programmed-With: Andrew Bartlett --- source4/scripting/python/samba/join.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source4/scripting/python/samba/join.py b/source4/scripting/python/samba/join.py index 36732d692d..2cb1e3da0b 100644 --- a/source4/scripting/python/samba/join.py +++ b/source4/scripting/python/samba/join.py @@ -68,7 +68,8 @@ def join_rodc(server=None, creds=None, lp=None, site=None, netbios_name=None, def find_dc(ctx, domain): '''find a writeable DC for the given domain''' - return ctx.net.finddc(domain, nbt.NBT_SERVER_LDAP | nbt.NBT_SERVER_DS | nbt.NBT_SERVER_WRITABLE) + ctx.cldap_ret = ctx.net.finddc(domain, nbt.NBT_SERVER_LDAP | nbt.NBT_SERVER_DS | nbt.NBT_SERVER_WRITABLE) + return ctx.cldap_ret.pdc_dns_name; def get_dsServiceName(samdb): @@ -309,6 +310,8 @@ def join_rodc(server=None, creds=None, lp=None, site=None, netbios_name=None, ctx.domsid = ctx.samdb.get_domain_sid() ctx.domain_name = get_domain_name(ctx.samdb) + lp.set("realm", ctx.domain_name) + ctx.dc_ntds_dn = get_dsServiceName(ctx.samdb) ctx.dc_dnsHostName = get_dnsHostName(ctx.samdb) ctx.acct_pass = samba.generate_random_password(12, 32) -- 2.34.1