Revision
42
Author
misc
Date
2010-10-27 17:20:29 +0200 (Wed, 27 Oct 2010)

Log Message

- fix the filename here too

Modified Paths

Diff

Modified: puppet/modules/bind/manifests/init.pp (41 => 42)


--- puppet/modules/bind/manifests/init.pp	2010-10-27 15:13:50 UTC (rev 41)
+++ puppet/modules/bind/manifests/init.pp	2010-10-27 15:20:29 UTC (rev 42)
@@ -42,13 +42,13 @@
     }
 
     class bind_master inherits bind_base {
-        file { '/etc/named.conf':
+        file { '/var/lib/named/etc/named.conf':
             content => template("bind/named_base.conf", "bind/named_master.conf"),
         }
     }
 
     class bind_slave inherits bind_base {
-        file { '/etc/named.conf':
+        file { '/var/lib/named/etc/named.conf':
             content => template("bind/named_base.conf", "bind/named_slave.conf"),
         }
     }