]> git.llucax.com Git - software/pymin.git/blobdiff - services/dns/templates/named.conf
Remove plug-in code from handler module in services (refs #27).
[software/pymin.git] / services / dns / templates / named.conf
index 9638bc0e2c0517d06a4fc21c86e978dc00a0e997..cc0a1f6c8e618a0ef3462f32bd5947598d108569 100644 (file)
@@ -1,5 +1,5 @@
 options {
-       directory "/var/bind";
+       directory "/var/lib/named";
 
 % if isp_dns1 or isp_dns2:
        forward first;
@@ -29,19 +29,19 @@ options {
 
 zone "." IN {
        type hint;
-       file "named.ca";
+       file "root.hint";
 };
 
 zone "localhost" IN {
        type master;
-       file "pri/localhost.zone";
+       file "localhost.zone";
        allow-update { none; };
        notify no;
 };
 
 zone "127.in-addr.arpa" IN {
        type master;
-       file "pri/127.zone";
+       file "127.0.0.zone";
        allow-update { none; };
        notify no;
 };
@@ -49,9 +49,9 @@ zone "127.in-addr.arpa" IN {
 % for zone in zones:
 zone "${zone.name}" IN {
        type master;
-       file "pri/${zone.name}.zone";
+       file "${zone.name}.zone";
        allow-update { none; };
        notify no;
 };
 
-% endfor
\ No newline at end of file
+% endfor