Merge "bind: Disable config check in Ubuntu"

This commit is contained in:
Zuul 2023-03-21 19:09:45 +00:00 committed by Gerrit Code Review
commit 1a2add7782

View File

@ -17,9 +17,18 @@ class openstack_integration::bind {
default => 'none',
}
# NOTE(tkajinam) Disable config check in Ubuntu due to
# https://github.com/theforeman/puppet-dns/issues/227
if $facts['os']['name'] == 'Ubuntu' {
$config_check = false
} else {
$config_check = true
}
# NOTE (dmsimard): listen_on_v6 is false and overridden due to extended port
# configuration in additional_options
class { 'dns':
config_check => $config_check,
recursion => 'no',
allow_recursion => [],
listen_on_v6 => false,