From: Raphael Hertzog Date: Sun, 1 Mar 2009 00:25:57 +0000 (+0100) Subject: dak init-db: properly initialize suite_architectures X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=0262c823195e0e3334db1a554c7062e94ea01c62;p=dak.git dak init-db: properly initialize suite_architectures Using database.get_suite_architectures() here makes no sense since that function uses the table that we're trying to fill. Instead we should assume that all suites support all architectures. And it's up to the admin to adjust the set afterwards if needed. Signed-off-by: Raphael Hertzog --- diff --git a/dak/init_db.py b/dak/init_db.py index e1f1bced..fcd108a4 100755 --- a/dak/init_db.py +++ b/dak/init_db.py @@ -131,7 +131,7 @@ def do_suite(): projectB.query("INSERT INTO suite (suite_name, version, origin, " "description) VALUES ('%s', %s, %s, %s)" % (suite.lower(), version, origin, description)) - for architecture in database.get_suite_architectures(suite): + for architecture in Cnf.SubTree("Architectures").List(): architecture_id = database.get_architecture_id (architecture) if architecture_id < 0: utils.fubar("architecture '%s' not found in architecture"