Initial Liberty Changes

Metadata changes
- Updated maintainer email
- Updated the version

remove db2 refs

Change-Id: I7744f2b20a0e7d77344f50b791024ecbc4eb2435
This commit is contained in:
JJ Asghar 2015-08-27 16:28:03 -05:00 committed by Mark Vanderwiel
parent 411d553f94
commit 49c1a11b8b
2 changed files with 4 additions and 13 deletions

View File

@ -1,11 +1,11 @@
# encoding: UTF-8
name 'openstack-orchestration'
maintainer 'openstack-chef'
maintainer_email 'opscode-chef-openstack@googlegroups.com'
maintainer_email 'openstack-dev@lists.openstack.org'
license 'Apache 2.0'
description 'Installs and configures the Heat Service'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '11.0.0'
version '12.0.0'
recipe 'openstack-orchestration::api', 'Start and configure the Heat API service'
recipe 'openstack-orchestration::api-cfn', 'Start and configure the Heat API CloudFormation service'
recipe 'openstack-orchestration::api-cloudwatch', 'Start and configure the Heat API CloudWatch service'
@ -18,5 +18,5 @@ recipe 'openstack-orchestration::identity_registration', 'Registers Heat service
supports os
end
depends 'openstack-common', '>= 11.5.0'
depends 'openstack-identity', '>= 11.0.0'
depends 'openstack-common', '>= 12.0.0'
depends 'openstack-identity', '>= 12.0.0'

View File

@ -25,14 +25,5 @@ describe 'openstack-orchestration::common' do
expect(chef_run).not_to upgrade_package 'python-ibm-db'
expect(chef_run).not_to upgrade_package 'python-ibm-db-sa'
end
it 'installs db2 python packages if explicitly told' do
node.set['openstack']['db']['orchestration']['service_type'] = 'db2'
expect(chef_run).to upgrade_package 'python-ibm-db'
expect(chef_run).to upgrade_package 'python-ibm-db-sa'
expect(chef_run).not_to upgrade_package 'python-psycopg2'
expect(chef_run).not_to upgrade_package 'MySQL-python'
end
end
end