[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] Fix database permissions



Signed-off-by: Mark Hymers <mhy@debian.org>
---
 dak/dakdb/update58.py |   90 +++++++++++++++++++++++++++++++++++++++++++++++++
 dak/update_db.py      |    2 +-
 2 files changed, 91 insertions(+), 1 deletions(-)
 create mode 100755 dak/dakdb/update58.py

diff --git a/dak/dakdb/update58.py b/dak/dakdb/update58.py
new file mode 100755
index 0000000..8680fc2
--- /dev/null
+++ b/dak/dakdb/update58.py
@@ -0,0 +1,90 @@
+#!/usr/bin/env python
+# coding=utf8
+
+"""
+Fix permissions again
+
+@contact: Debian FTP Master <ftpmaster@debian.org>
+@copyright: 2011 Mark Hymers <mhy@debian.org>
+@license: GNU General Public License version 2 or later
+"""
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+################################################################################
+
+import psycopg2
+from daklib.dak_exceptions import DBUpdateError
+
+################################################################################
+def do_update(self):
+    """
+    Fix up permissions (again)
+    """
+    print __doc__
+    try:
+        c = self.db.cursor()
+
+        for table in ['build_queue_policy_files',
+                      'version_check']:
+            c.execute("""GRANT SELECT, UPDATE, INSERT ON %s TO ftpmaster""" % table)
+            c.execute("""GRANT SELECT ON %s TO public""" % table)
+
+        # Make sure all sequences are fixed up
+        for seq in ['architecture_id_seq',
+                    'archive_id_seq',
+                    'bin_associations_id_seq',
+                    'binaries_id_seq',
+                    'binary_acl_id_seq',
+                    'binary_acl_map_id_seq',
+                    'build_queue_files_id_seq',
+                    'build_queue_id_seq',
+                    'changelogs_text_id_seq',
+                    'changes_id_seq',
+                    'changes_pending_binaries_id_seq',
+                    'changes_pending_files_id_seq',
+                    'changes_pending_source_id_seq',
+                    'component_id_seq',
+                    'config_id_seq',
+                    'dsc_files_id_seq',
+                    'files_id_seq',
+                    'fingerprint_id_seq',
+                    'keyring_acl_map_id_seq',
+                    'keyrings_id_seq',
+                    'location_id_seq',
+                    'maintainer_id_seq',
+                    'metadata_keys_key_id_seq',
+                    'new_comments_id_seq',
+                    'override_type_id_seq',
+                    'policy_queue_id_seq',
+                    'priority_id_seq',
+                    'section_id_seq',
+                    'source_acl_id_seq',
+                    'source_id_seq',
+                    'src_associations_id_seq',
+                    'src_format_id_seq',
+                    'src_uploaders_id_seq',
+                    'suite_id_seq',
+                    'uid_id_seq',
+                    'upload_blocks_id_seq']:
+            c.execute("""GRANT SELECT, UPDATE, USAGE ON %s TO ftpmaster""" % seq)
+            c.execute("""GRANT SELECT ON %s TO public""" % seq)
+
+        c.execute("UPDATE config SET value = '58' WHERE name = 'db_revision'")
+        self.db.commit()
+
+    except psycopg2.ProgrammingError, msg:
+        self.db.rollback()
+        raise DBUpdateError, 'Unable to apply sick update 58, rollback issued. Error message : %s' % (str(msg))
diff --git a/dak/update_db.py b/dak/update_db.py
index a0b091a..75d45df 100755
--- a/dak/update_db.py
+++ b/dak/update_db.py
@@ -46,7 +46,7 @@ from daklib.daklog import Logger
 ################################################################################
 
 Cnf = None
-required_database_schema = 57
+required_database_schema = 58
 
 ################################################################################
 
-- 
1.7.2.5


Reply to: