1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

s4-dns: send A record updates via TKEY

This commit is contained in:
Andrew Tridgell 2010-09-29 17:33:49 -07:00
parent c82d6c0b96
commit 92586abac0

View File

@ -380,7 +380,12 @@ get_credentials(lp)
# ask nsupdate to add entries as needed
for d in update_list:
if am_rodc:
call_rodc_update(d)
if d.name.lower() == domain.lower():
continue
if d.type != 'A':
call_rodc_update(d)
else:
call_nsupdate(d)
else:
call_nsupdate(d)