]> git.decadent.org.uk Git - dak.git/blobdiff - alyson
Fix database name to be a config option. Fix debian/rules typo. [Ryan Murray]
[dak.git] / alyson
diff --git a/alyson b/alyson
index 2b55faa21b2498d542a762301df9916bbc0e004c..9801d596c6ce84c80fcbfe80408c0d9bed005ed9 100755 (executable)
--- a/alyson
+++ b/alyson
@@ -2,7 +2,7 @@
 
 # Sync the ISC configuartion file and the SQL database
 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
-# $Id: alyson,v 1.3 2001-03-02 02:24:33 troup Exp $
+# $Id: alyson,v 1.4 2001-03-20 00:28:11 troup Exp $
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -43,7 +43,7 @@ def main ():
                  ('v',"version","Alyson::Options::Version")];
     apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
 
-    projectB = pg.connect('projectb', 'localhost');
+    projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
     db_access.init(Cnf, projectB);
 
     # Quick hack to populate section, priority and bin_type; the rest todo later