]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix grant script to set grants on correct sequence names and not PostgreSQL names.
authorMarco van Wieringen <mvw@planets.elm.net>
Sat, 3 Apr 2010 14:23:24 +0000 (16:23 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:49:43 +0000 (16:49 +0200)
bacula/src/cats/grant_postgresql_privileges.in
bacula/src/cats/make_ingres_tables.in

index 5480903bef612fcfb378176aa9b094244c84b01a..e7219d03cf7f1d901a0e018960431f6b7103d586 100644 (file)
@@ -37,22 +37,22 @@ grant all on PathHierarchy  to ${db_user};
 grant all on PathVisibility to ${db_user};
 -- for sequences on those tables
 
-grant select, update on filename_filenameid_seq    to ${db_user};
-grant select, update on path_pathid_seq           to ${db_user};
-grant select, update on fileset_filesetid_seq     to ${db_user};
-grant select, update on pool_poolid_seq           to ${db_user};
-grant select, update on client_clientid_seq       to ${db_user};
-grant select, update on media_mediaid_seq         to ${db_user};
-grant select, update on job_jobid_seq             to ${db_user};
-grant select, update on file_fileid_seq           to ${db_user};
-grant select, update on jobmedia_jobmediaid_seq    to ${db_user};
-grant select, update on basefiles_baseid_seq      to ${db_user};
-grant select, update on storage_storageid_seq     to ${db_user};
-grant select, update on mediatype_mediatypeid_seq  to ${db_user};
-grant select, update on device_deviceid_seq       to ${db_user};
-grant select, update on location_locationid_seq    to ${db_user};
-grant select, update on locationlog_loclogid_seq   to ${db_user};
-grant select, update on log_logid_seq             to ${db_user};
+grant select, update on filename_seq    to ${db_user};
+grant select, update on path_seq       to ${db_user};
+grant select, update on fileset_seq    to ${db_user};
+grant select, update on pool_seq       to ${db_user};
+grant select, update on client_seq     to ${db_user};
+grant select, update on media_seq      to ${db_user};
+grant select, update on job_seq                to ${db_user};
+grant select, update on file_seq       to ${db_user};
+grant select, update on jobmedia_seq    to ${db_user};
+grant select, update on basefiles_seq  to ${db_user};
+grant select, update on storage_seq    to ${db_user};
+grant select, update on mediatype_seq   to ${db_user};
+grant select, update on device_seq     to ${db_user};
+grant select, update on location_seq    to ${db_user};
+grant select, update on locationlog_seq to ${db_user};
+grant select, update on log_seq                to ${db_user};
 END-OF-DATA
 if [ $? -eq 0 ]
 then
index e2151fe1f6e35438ef6ab27b4e00b13f05862778..379d4d79e605a23688dcca1f278bd73d67af6f13 100755 (executable)
@@ -268,7 +268,6 @@ CREATE TABLE Device (
    PRIMARY KEY(DeviceId)
    );
 
-
 CREATE SEQUENCE pool_seq;
 CREATE TABLE pool
 (
@@ -343,8 +342,6 @@ CREATE TABLE LocationLog (
    PRIMARY KEY(LocLogId)
 );
 
-
-
 CREATE TABLE counters
 (
     counter          varchar(256)        not null,
@@ -355,7 +352,6 @@ CREATE TABLE counters
     primary key (counter)
 );
 
-
 CREATE SEQUENCE basefiles_seq;
 CREATE TABLE basefiles
 (