The DNS server shouldn't error if dns.zone_files isn't set in the config. 0.0.9
authorEvan Broder <broder@mit.edu>
Sat, 31 Jan 2009 01:38:36 +0000 (20:38 -0500)
committerEvan Broder <broder@mit.edu>
Sat, 31 Jan 2009 01:38:36 +0000 (20:38 -0500)
svn path=/trunk/packages/invirt-dns/; revision=2037

debian/changelog
invirt-dns

index 5677ef4..ccf1352 100644 (file)
@@ -1,3 +1,9 @@
+invirt-dns (0.0.9) unstable; urgency=low
+
+  * Don't error if dns.zone_files isn't set in the config.
+
+ -- Evan Broder <broder@mit.edu>  Fri, 30 Jan 2009 20:09:35 -0500
+
 invirt-dns (0.0.8) unstable; urgency=low
 
   * Check the nics table first and then the machines table so that you can
index 4049257..24117f0 100755 (executable)
@@ -7,6 +7,7 @@ from twisted.names import authority
 from twisted.internet import defer
 from twisted.python import failure
 
+from invirt.common import InvirtConfigError
 from invirt.config import structs as config
 import invirt.database
 import psycopg2
@@ -169,17 +170,21 @@ class QuotingBindAuthority(authority.BindAuthority):
 
 if '__main__' == __name__:
     resolvers = []
-    for zone in config.dns.zone_files:
-        for origin in config.dns.domains:
-            r = QuotingBindAuthority(zone)
-            # This sucks, but if I want a generic zone file, I have to
-            # reload the information by hand
-            r.origin = origin
-            lines = open(zone).readlines()
-            lines = r.collapseContinuations(r.stripComments(lines))
-            r.parseLines(lines)
-            
-            resolvers.append(r)
+    try:
+        for zone in config.dns.zone_files:
+            for origin in config.dns.domains:
+                r = QuotingBindAuthority(zone)
+                # This sucks, but if I want a generic zone file, I have to
+                # reload the information by hand
+                r.origin = origin
+                lines = open(zone).readlines()
+                lines = r.collapseContinuations(r.stripComments(lines))
+                r.parseLines(lines)
+                
+                resolvers.append(r)
+    except InvirtConfigError:
+        # Don't care if zone_files isn't defined
+        pass
     resolvers.append(DatabaseAuthority())
 
     verbosity = 0