From: Eric Bollengier Date: Mon, 5 Dec 2022 08:50:40 +0000 (+0100) Subject: Fix #9719 About upgrade issue with grant_postgresql_privileges script X-Git-Tag: Beta-15.0.0~339 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d27a727edf4ce514d746e61c096fb05e15bcf56c;p=thirdparty%2Fbacula.git Fix #9719 About upgrade issue with grant_postgresql_privileges script --- diff --git a/bacula/src/cats/grant_postgresql_privileges.in b/bacula/src/cats/grant_postgresql_privileges.in index 1bc33eacc..ac01057ad 100644 --- a/bacula/src/cats/grant_postgresql_privileges.in +++ b/bacula/src/cats/grant_postgresql_privileges.in @@ -24,6 +24,9 @@ alter database ${db_name} owner to ${db_user} ; grant CREATE on DATABASE ${db_name} to ${db_user}; -- for tables +grant all on MalwareMD5 to ${db_user}; +grant all on MalwareSHA256 to ${db_user}; +grant all on FileEvents to ${db_user}; grant all on MetaEmail to ${db_user}; grant all on MetaAttachment to ${db_user}; grant all on TagJob to ${db_user};