Correct MySQL DB priv names for citest grants

The old configuration was resulting in a puppet error of...

    err: /Stage[main]/Jenkins::Slave/Database_grant
        [openstack_citest@localhost]/privileges:
        change from  to create, drop failed: The privileges
        'create,drop' are not valid. Did you mean
        'create_priv,drop_priv'?

Change-Id: I325cabe2fce8a6893b03d9deb106ed2ae2a29364
This commit is contained in:
Jeremy Stanley 2014-02-11 23:48:24 +00:00
parent 5c3142f062
commit 6a069b086d

View File

@ -271,7 +271,7 @@ class jenkins::slave(
}
database_grant { 'openstack_citest@localhost':
privileges => ['CREATE', 'DROP'],
privileges => ['CREATE_PRIV', 'DROP_PRIV'],
provider => 'mysql',
require => Database_user['openstack_citest@localhost'],
}