Fix the depends cookbook version issue in metadata.rb
The depends condition should be ether of below: depends 'cookbook-name', '>=x.y.z' depends 'cookbook-name', '~>x.y' Closes-bug: 1300524 Change-Id: I6e4d009b92161dc0746586af1da043bf85e38c15
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
openstack-block-storage Cookbook CHANGELOG
|
||||
==============================
|
||||
This file is used to list changes made in each version of the openstack-block-storage cookbook.
|
||||
|
||||
|
||||
## 9.0.1
|
||||
### Bug
|
||||
* Fix the depends cookbook version issue in metadata.rb
|
||||
|
||||
## 9.0.0
|
||||
* Upgrade to Icehouse
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ maintainer_email 'cookbooks@lists.tfoundry.com'
|
||||
license 'Apache 2.0'
|
||||
description 'The OpenStack Advanced Volume Management service Cinder.'
|
||||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
|
||||
version '9.0.0'
|
||||
version '9.0.1'
|
||||
|
||||
recipe 'openstack-block-storage::api', 'Installs the cinder-api, sets up the cinder database, and cinder service/user/endpoints in keystone'
|
||||
recipe 'openstack-block-storage::client', 'Install packages required for cinder client'
|
||||
@@ -18,9 +18,9 @@ recipe 'openstack-block-storage::volume', 'Installs the cinder-volume
|
||||
supports os
|
||||
end
|
||||
|
||||
depends 'apt', '~> 2.3.8'
|
||||
depends 'apt', '>= 2.3.8'
|
||||
depends 'openstack-common', '~> 9.0'
|
||||
depends 'openstack-identity', '~> 9.0'
|
||||
depends 'openstack-image', '~> 9.0'
|
||||
depends 'selinux', '~> 0.7.2'
|
||||
depends 'selinux', '>= 0.7.2'
|
||||
depends 'python', '>= 1.4.6'
|
||||
|
||||
Reference in New Issue
Block a user