From 25328953b0d7404f6aeb1ebaffd09ef318049024 Mon Sep 17 00:00:00 2001 From: Quentin Smith Date: Sat, 25 Dec 2010 19:22:08 -0500 Subject: [PATCH] Add a new type of autoinstall - a preseeded Debian autoinstall. --- debian/changelog | 6 ++++++ python/database/models.py | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index b0939b1..7ac3bfa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +invirt-database (0.2.7) unstable; urgency=low + + * Add a new type of autoinstall - a preseeded Debian autoinstall. + + -- Quentin Smith Sat, 25 Dec 2010 19:17:45 -0500 + invirt-database (0.2.6) unstable; urgency=low * Make the build table's succeeded field nullable diff --git a/python/database/models.py b/python/database/models.py index 9a0266e..c1b31b6 100644 --- a/python/database/models.py +++ b/python/database/models.py @@ -91,7 +91,8 @@ autoinstalls_table = Table('autoinstalls', meta, Column('type_id', String, ForeignKey('types.type_id'), nullable=False), Column('distribution', String, nullable=False), Column('mirror', String, nullable=False), - Column('arch', String, nullable=False)) + Column('arch', String, nullable=False), + Column('preseed', Boolean, nullable=False, default=False)) owners_table = Table('owners', meta, Column('owner_id', String, primary_key=True, nullable=False), -- 1.7.9.5