fix metadata database depends

database pulls in mysql, new mysql v5 is not backward compatible.
Need to pull in mysql depends first at v4, then pull in database.

Change-Id: Ib27c9c77e7eaf25b11a3f4fb7871a6b3a8acba62
Related-Bug: #1300524
This commit is contained in:
Mark Vanderwiel 2014-04-11 11:34:31 -05:00
parent fce85a5a69
commit 51b2005b08
2 changed files with 7 additions and 4 deletions

View File

@ -2,6 +2,9 @@ openstack-ops-database Cookbook CHANGELG
===================================
This file is used to list changes made in each version of the openstack-ops-database cookbook.
## 9.0.1
* Fix metadata for database
## 9.0.0
* Upgrade to Icehouse

View File

@ -3,7 +3,7 @@ maintainer 'Opscode, Inc.'
maintainer_email 'matt@opscode.com'
license 'Apache 2.0'
description 'Provides the shared database configuration for Chef for OpenStack.'
version '9.0.0'
version '9.0.1'
recipe 'client', 'Installs client packages for the database used by the deployment.'
recipe 'server', 'Installs and configures server packages for the database used by the deployment.'
@ -17,7 +17,7 @@ recipe 'openstack-db', 'Creates necessary tables, users, and grants for OpenStac
supports os
end
depends 'database', '~> 2.0.0'
depends 'mysql', '~> 4.1.2'
depends 'postgresql', '~> 3.3.4'
depends 'mysql', '~> 4.1'
depends 'postgresql', '~> 3.3'
depends 'database', '~> 2.0'
depends 'openstack-common', '~> 9.0'