Browse Source

[trac575] Don't pass removed args to -auth from

Proper solution of this is left out as separate task, this is just a
quick hack so it starts up.
Michal 'vorner' Vaner 14 years ago
parent
commit
8ffbcda5bb
1 changed files with 4 additions and 3 deletions
  1. 4 3
      src/bin/bind10/bind10.py.in

+ 4 - 3
src/bin/bind10/bind10.py.in

@@ -417,9 +417,10 @@ class BoB:
             Start the Authoritative server
         """
         authargs = ['b10-auth']
-        authargs += ['-p', str(self.dns_port)]
-        if self.address:
-            authargs += ['-a', str(self.address)]
+        #TODO Remove these properly, with the rest
+        #authargs += ['-p', str(self.dns_port)]
+        #if self.address:
+        #    authargs += ['-a', str(self.address)]
         if self.nocache:
             authargs += ['-n']
         if self.uid: