76169450bc
Fixes: bug 1282908 Implements: blueprint centos-rhel-for-common All RDO packages depend on lots of packages from epel. if we have RDO we have to have epel. Change-Id: Ie00b22c77e03a4df6835e1df7523509af8976a35
22 lines
825 B
Ruby
22 lines
825 B
Ruby
name 'openstack-common'
|
|
maintainer 'AT&T Services, Inc.'
|
|
maintainer_email 'cookbooks@lists.tfoundry.com'
|
|
license 'Apache 2.0'
|
|
description 'Common OpenStack attributes, libraries and recipes.'
|
|
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
|
|
version '8.1.1'
|
|
|
|
recipe 'openstack-common', 'Installs/Configures common recipes'
|
|
recipe 'openstack-common::set_endpoints_by_interface', 'Set endpoints by interface'
|
|
recipe 'openstack-common::logging', 'Installs/Configures common logging'
|
|
recipe 'openstack-common::sysctl', 'Configures sysctl settings'
|
|
|
|
%w{ ubuntu suse redhat centos }.each do |os|
|
|
supports os
|
|
end
|
|
|
|
depends 'apt'
|
|
depends 'database'
|
|
depends 'yum', '~> 3.0'
|
|
depends 'yum-epel'
|