Skip to content

Commit

Permalink
provision: BIND 9.13.x is not supported
Browse files Browse the repository at this point in the history
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14487

Signed-off-by: Amitay Isaacs <[email protected]>
Reviewed-by: Rowland Penny <[email protected]>
  • Loading branch information
amitay authored and Amitay Isaacs committed Sep 24, 2020
1 parent cdb6c5d commit 9527861
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/samba/provision/sambadns.py
Original file line number Diff line number Diff line change
Expand Up @@ -974,6 +974,8 @@ def create_named_conf(paths, realm, dnsdomain, dns_backend, logger):
bind9_12 = ''
elif bind_info.upper().find('BIND 9.7') != -1:
raise ProvisioningError("DLZ option incompatible with BIND 9.7.")
elif bind_info.upper().find('BIND_9.13') != -1:
raise ProvisioningError("Only stable/esv releases of BIND are supported.")
else:
logger.warning("BIND version unknown, please modify %s manually." % paths.namedconf)
setup_file(setup_path("named.conf.dlz"), paths.namedconf, {
Expand Down

0 comments on commit 9527861

Please sign in to comment.