thias / puppet-bind

Puppet BIND DNS server module
Other
26 stars 107 forks source link

Add also_notify to options #75

Open bepstein opened 7 years ago

bepstein commented 7 years ago

Can you add support to add also_notify arrays to the options section? Here is a patch that I believe will work.

`diff --git a/manifests/server/conf.pp b/manifests/server/conf.pp index 14fcbc1..070c128 100644 --- a/manifests/server/conf.pp +++ b/manifests/server/conf.pp @@ -41,6 +41,8 @@

Array of IP addrs or ACLs to allow recursion from. Default: empty

$allow_transfer:

Array of IP addrs or ACLs to allow transfer to. Default: empty

+# $also_notify: +# Array of IP addrs or ACLs to send notifies to. Default: empty

$check_names:

Array of check-names strings. Example: [ 'master ignore' ]. Default: empty

$extra_options:

@@ -109,6 +111,7 @@ define bind::server::conf ( $recursion = 'yes', $allow_recursion = [], $allow_transfer = [],

Thanks, ep

bepstein commented 7 years ago

Perhaps an attachment would be better.

also-notify.patch.txt