From: Eric Bollengier Date: Mon, 25 May 2020 12:30:07 +0000 (+0200) Subject: Fix #6298 about permission issue on the Object table sequence id X-Git-Tag: Release-11.3.2~1471 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1531ff40c98a16a846546b3daff4fa1be9aab2f;p=thirdparty%2Fbacula.git Fix #6298 about permission issue on the Object table sequence id --- diff --git a/bacula/src/cats/grant_postgresql_privileges.in b/bacula/src/cats/grant_postgresql_privileges.in index 627a3ce2ce..91ce04cd26 100644 --- a/bacula/src/cats/grant_postgresql_privileges.in +++ b/bacula/src/cats/grant_postgresql_privileges.in @@ -74,6 +74,7 @@ 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 restoreobject_restoreobjectid_seq to ${db_user}; +grant select, update on object_objectid_seq to ${db_user}; grant select, update on snapshot_snapshotid_seq to ${db_user}; END-OF-DATA if [ $? -eq 0 ]