X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fgenerate_filelist.py;h=a58fe7e2c45d50288b9d135d82a716d58e319eb5;hb=b5b25234382f20595be0b8dad19f6502fb704b52;hp=a2246f5cd3707dbf656886ffcee2bb356140064f;hpb=af1ca499f256da9e685a3f0e112e12033b852ed5;p=dak.git diff --git a/dak/generate_filelist.py b/dak/generate_filelist.py index a2246f5c..a58fe7e2 100755 --- a/dak/generate_filelist.py +++ b/dak/generate_filelist.py @@ -196,9 +196,11 @@ def main(): suites = [suite.suite_name for suite in query_suites.all()] if not cnf.has_key('Filelist::Options::Suite'): cnf['Filelist::Options::Suite'] = ','.join(suites) - # we can ask the database for components if 'mixed' is gone + query_components = session.query(Component) + components = \ + [component.component_name for component in query_components.all()] if not cnf.has_key('Filelist::Options::Component'): - cnf['Filelist::Options::Component'] = 'main,contrib,non-free' + cnf['Filelist::Options::Component'] = ','.join(components) query_architectures = session.query(Architecture) architectures = \ [architecture.arch_string for architecture in query_architectures.all()]