diff options
author | Matthieu Patou <mat@matws.net> | 2011-10-23 22:27:08 +0200 |
---|---|---|
committer | Matthieu Patou <mat@matws.net> | 2011-11-01 17:26:51 +0100 |
commit | 3cdfcb93949bcee15b489e089156eeca84f39483 (patch) | |
tree | be2e03db1cf9ffc51fe70de65acc31339b2b7b78 /source4 | |
parent | dba46ca771fcf1ba77db68f6436c6564e5a7e1b6 (diff) | |
download | samba-3cdfcb93949bcee15b489e089156eeca84f39483.tar.gz samba-3cdfcb93949bcee15b489e089156eeca84f39483.tar.bz2 samba-3cdfcb93949bcee15b489e089156eeca84f39483.zip |
s4-domain-join: do not add DFSR entries when joining, this should be done in the code handling DFSR replication
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/python/samba/join.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/source4/scripting/python/samba/join.py b/source4/scripting/python/samba/join.py index 6a8ac97f1c..535120c682 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() |