X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Finit_db.py;h=a34ec4cfac2114f5e34123bc47040a2ccab19e64;hb=77d71f62f91bea720ed400900e3ee9ce60e00bfe;hp=b0589b131b9f05ae8ed38c2ddeedaff7b06b12d9;hpb=731c2232d9964d0f441ff5ea386e5e9937aa77ab;p=dak.git diff --git a/dak/init_db.py b/dak/init_db.py index b0589b13..a34ec4cf 100755 --- a/dak/init_db.py +++ b/dak/init_db.py @@ -127,13 +127,15 @@ class InitDB(object): s.commit() def do_suite(self): - """Initalize the suite table.""" + """Initialize the suite table.""" s = self.projectB.session() s.query(Suite).delete() for suite in self.Cnf.SubTree("Suite").List(): + suite = suite.lower() su = Suite() + su.suite_name = suite su.version = self.Cnf.get("Suite::%s::Version" % suite, "-") su.origin = self.Cnf.get("Suite::%s::Origin" % suite, "") su.description = self.Cnf.get("Suite::%s::Description" % suite, "") @@ -141,11 +143,11 @@ class InitDB(object): for architecture in self.Cnf.ValueList("Suite::%s::Architectures" % (suite)): sa = SuiteArchitecture() - sa.suite_id = su.suite_id a = s.query(Architecture).filter_by(arch_string=architecture) if a.count() < 1: utils.fubar("E: Architecture %s not found for suite %s" % (architecture, suite)) sa.arch_id = a.one().arch_id + sa.suite_id = su.suite_id s.add(sa) s.commit()