]> git.sur5r.net Git - bacula/bacula/commitdiff
Add new Path tables to grant and drop scripts
authorEric Bollengier <eric@eb.homelinux.org>
Fri, 15 Jan 2010 13:38:07 +0000 (14:38 +0100)
committerEric Bollengier <eric@eb.homelinux.org>
Fri, 15 Jan 2010 13:38:07 +0000 (14:38 +0100)
bacula/src/cats/drop_mysql_tables.in
bacula/src/cats/drop_postgresql_tables.in
bacula/src/cats/grant_postgresql_privileges.in

index 6c2ef32828045d7fd88e231a75ce7468ef0e9ee8..a66aa421d59c7f4ed415eff44550ba606fd3b5f9 100644 (file)
@@ -33,6 +33,8 @@ DROP TABLE IF EXISTS MAC;
 DROP TABLE IF EXISTS Log;
 DROP TABLE IF EXISTS Location;
 DROP TABLE IF EXISTS LocationLog;
+DROP TABLE IF EXISTS PathVisibility;
+DROP TABLE IF EXISTS PathHierarchy;
 END-OF-DATA
 then
    echo "Deletion of ${db_name} MySQL tables succeeded."
index 71c45b571c4ffbcb462be30c36281ddd496f45b6..05355ddbe07d527eee4e58d1f41ce2ff2c11db6d 100644 (file)
@@ -29,6 +29,8 @@ drop table MAC;
 drop table log;
 drop table Location;
 drop table locationlog;
+drop table PathVisibility;
+drop table PathHierarchy;
 END-OF-DATA
 pstat=$?
 if test $pstat = 0; 
index 19ee9bcf4a1d02f68917d7ef1d1715e99995d40a..5480903bef612fcfb378176aa9b094244c84b01a 100644 (file)
@@ -33,7 +33,8 @@ grant all on location   to ${db_user};
 grant all on locationlog  to ${db_user};
 grant all on log         to ${db_user};
 grant all on jobhisto    to ${db_user};
-
+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};
@@ -52,7 +53,6 @@ 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};
-
 END-OF-DATA
 if [ $? -eq 0 ]
 then