]> git.decadent.org.uk Git - dak.git/blob - dak/dakdb/update100.py
Adjust to deal with the new Debian supplementaryGid
[dak.git] / dak / dakdb / update100.py
1 #!/usr/bin/env python
2 # coding=utf8
3
4 """
5 Add a component - suite mapping to only expose certain components in certain suites
6
7 @contact: Debian FTP Master <ftpmaster@debian.org>
8 @copyright: 2012 Varnish Software AS
9 @author: Tollef Fog Heen <tfheen@varnish-software.com>
10 @license: GNU General Public License version 2 or later
11 """
12
13 # This program is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2 of the License, or
16 # (at your option) any later version.
17
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
27 ################################################################################
28
29 import psycopg2
30 from daklib.dak_exceptions import DBUpdateError
31 from daklib.config import Config
32
33 ################################################################################
34 def do_update(self):
35     print __doc__
36     try:
37         cnf = Config()
38
39         c = self.db.cursor()
40
41         c.execute("""
42             CREATE TABLE component_suite (
43                 component_id INTEGER NOT NULL REFERENCES component(id) ON DELETE CASCADE,
44                 suite_id INTEGER NOT NULL REFERENCES suite(id) ON DELETE CASCADE,
45                 PRIMARY KEY (component_id, suite_id)
46             )
47             """)
48         # Set up default mappings for all components to all suites
49         c.execute("INSERT INTO component_suite(component_id, suite_id) SELECT component.id,suite.id from suite, component")
50
51         c.execute("UPDATE config SET value = '100' WHERE name = 'db_revision'")
52         self.db.commit()
53
54     except psycopg2.ProgrammingError as msg:
55         self.db.rollback()
56         raise DBUpdateError('Unable to apply sick update 100, rollback issued. Error message: {0}'.format(msg))