summaryrefslogtreecommitdiff
path: root/python/samba/samdb.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/samba/samdb.py')
-rw-r--r--python/samba/samdb.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/python/samba/samdb.py b/python/samba/samdb.py
index 719bb8b2d90..638fa06ec8a 100644
--- a/python/samba/samdb.py
+++ b/python/samba/samdb.py
@@ -930,9 +930,13 @@ accountExpires: %u
res = self.search(base="", scope=ldb.SCOPE_BASE, attrs=["serverName"])
return res[0]["serverName"][0]
- def dns_lookup(self, dns_name):
+ def dns_lookup(self, dns_name, dns_partition=None):
'''Do a DNS lookup in the database, returns the NDR database structures'''
- return dsdb_dns.lookup(self, dns_name)
+ if dns_partition is None:
+ return dsdb_dns.lookup(self, dns_name)
+ else:
+ return dsdb_dns.lookup(self, dns_name,
+ dns_partition=dns_partition)
def dns_extract(self, el):
'''Return the NDR database structures from a dnsRecord element'''