As DNS wild cards are now supported we need to allow '*' characters in
the domain names.
Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12952
record_type = dns_type_flag(rtype)
if name.find('*') != -1:
- raise CommandError('Wildcard searches not supported. To dump entire zone use "@"')
+ self.outf.write('use "@" to dump entire domain, looking up %s\n' %
+ name)
select_flags = 0
if authority:
+++ /dev/null
-# Support for DNS wildcared entries by samba_tool dns sub command
-# Will fail until implemented.
-^samba.tests.samba_tool.dnscmd.samba.tests.samba_tool.dnscmd.DnsCmdTestCase.test_dns_wildcards\(ad_dc:local\)