From: Stephen Gran Date: Tue, 23 Feb 2010 19:29:54 +0000 (+0000) Subject: add local DNS recursor class X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=abe2c24df4b1bb984655b479a4fc75295133e6b5;p=mirror%2Fdsa-puppet.git add local DNS recursor class Signed-off-by: Stephen Gran --- diff --git a/modules/named/manifests/recursor.pp b/modules/named/manifests/recursor.pp new file mode 100644 index 000000000..c4de8b331 --- /dev/null +++ b/modules/named/manifests/recursor.pp @@ -0,0 +1,8 @@ +class named::secondary inherits named { + file { "/etc/bind/named.conf.options": + content => template("named/named.conf.options.erb"), + notify => Exec["bind9 reload"], + } +} + +