From 3cdfcb93949bcee15b489e089156eeca84f39483 Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Sun, 23 Oct 2011 22:27:08 +0200 Subject: [PATCH] s4-domain-join: do not add DFSR entries when joining, this should be done in the code handling DFSR replication --- source4/scripting/python/samba/join.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/source4/scripting/python/samba/join.py b/source4/scripting/python/samba/join.py index 6a8ac97f1c3..535120c6825 100644 --- a/source4/scripting/python/samba/join.py +++ b/source4/scripting/python/samba/join.py @@ -471,15 +471,6 @@ class dc_join(object): "fromServer" : ctx.dc_ntds_dn} ctx.samdb.add(rec) - if ctx.topology_dn and ctx.acct_dn: - print "Adding %s" % ctx.topology_dn - rec = { - "dn" : ctx.topology_dn, - "objectclass" : "msDFSR-Member", - "msDFSR-ComputerReference" : ctx.acct_dn, - "serverReference" : ctx.ntds_dn} - ctx.samdb.add(rec) - if ctx.acct_dn: print "Adding SPNs to %s" % ctx.acct_dn m = ldb.Message() -- 2.11.4.GIT