From c7b46bdfce508e42832ae6b7131f86f5709705d9 Mon Sep 17 00:00:00 2001 From: Dan Langille Date: Tue, 9 Jan 2007 23:14:21 +0000 Subject: [PATCH] Grant permissions on location, locationlog, log. Reported by Doug Sampson. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3956 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/cats/grant_postgresql_privileges.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bacula/src/cats/grant_postgresql_privileges.in b/bacula/src/cats/grant_postgresql_privileges.in index 24e0cdce1e..d4ab9a22f9 100644 --- a/bacula/src/cats/grant_postgresql_privileges.in +++ b/bacula/src/cats/grant_postgresql_privileges.in @@ -28,6 +28,9 @@ grant all on mediatype to ${USER}; grant all on storage to ${USER}; grant all on device to ${USER}; grant all on status to ${USER}; +grant all on location to ${USER}; +grant all on locationlog to ${USER}; +grant all on log to ${USER}; -- for sequences on those tables @@ -44,7 +47,9 @@ grant select, update on basefiles_baseid_seq to ${USER}; grant select, update on storage_storageid_seq to ${USER}; grant select, update on mediatype_mediatypeid_seq to ${USER}; grant select, update on device_deviceid_seq to ${USER}; - +grant select, update on location_locationid_seq to ${USER}; +grant select, update on locationlog_loclogid_seq to ${USER}; +grant select, update on log_logid_seq to ${USER}; END-OF-DATA then -- 2.39.5