From 4ac884bfa49f64e02d2841ccfc7fd51a6fcfc04a Mon Sep 17 00:00:00 2001 From: Mykyta Karpin Date: Wed, 23 Mar 2016 19:02:01 +0200 Subject: [PATCH] Fix gerrit mysql permissions This change will fix errors during database initializing by gerrit The same grants are used in upstream manifests: https://github.com/openstack-infra/puppet-gerrit/blob/master/manifests/mysql.pp Change-Id: Ibb25fcc61f3030b0b9327a9d498d41bdd700abe4 --- murano-apps/Gerrit/Resources/scripts/database.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/murano-apps/Gerrit/Resources/scripts/database.pp b/murano-apps/Gerrit/Resources/scripts/database.pp index 119270b..1b0ad5b 100644 --- a/murano-apps/Gerrit/Resources/scripts/database.pp +++ b/murano-apps/Gerrit/Resources/scripts/database.pp @@ -8,6 +8,6 @@ node default { user => hiera('gerrit_db_user'), password => hiera('gerrit_db_password'), host => 'localhost', - grant => ['SELECT', 'UPDATE', 'CREATE', 'INSERT'], + grant => ['all'], } }