[SCM] Samba Shared Repository - branch master updated

Andrew Tridgell tridge at samba.org
Wed Sep 29 19:41:01 MDT 2010


The branch, master has been updated
       via  92586ab s4-dns: send A record updates via TKEY
      from  c82d6c0 s3-spoolss: make sure to exit early and with the appropriate error code in _spoolss_GetPrinterDriver2.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 92586abac004fe55bdb66af5b0f0e281304cbf56
Author: Andrew Tridgell <tridge at samba.org>
Date:   Wed Sep 29 17:33:49 2010 -0700

    s4-dns: send A record updates via TKEY

-----------------------------------------------------------------------

Summary of changes:
 source4/scripting/bin/samba_dnsupdate |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/scripting/bin/samba_dnsupdate b/source4/scripting/bin/samba_dnsupdate
index a8a7e59..072f818 100755
--- a/source4/scripting/bin/samba_dnsupdate
+++ b/source4/scripting/bin/samba_dnsupdate
@@ -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)
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list