fc217f6ce4
Cleaned up all the minor rubocop issues, the ones left relate to complex logic and what I think is a bug in rubocop for nested vs compact modules/class definitions. Change-Id: Ic0c0677de44642e0994c0b95a3c270cbd4749b40
25 lines
867 B
Ruby
25 lines
867 B
Ruby
name 'openstack-common'
|
|
maintainer 'openstack-chef'
|
|
maintainer_email 'opscode-chef-openstack@googlegroups.com'
|
|
license 'Apache 2.0'
|
|
description 'Common OpenStack attributes, libraries and recipes.'
|
|
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
|
|
version '11.3.0'
|
|
|
|
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'
|
|
recipe 'openstack-common::openrc', 'Creates openrc file'
|
|
|
|
%w(ubuntu suse redhat centos).each do |os|
|
|
supports os
|
|
end
|
|
|
|
depends 'apt', '~> 2.6.1'
|
|
depends 'database', '~> 4.0.2'
|
|
depends 'mariadb', '~> 0.3.0'
|
|
depends 'mysql', '~> 6.0.13'
|
|
depends 'yum', '~> 3.5.4'
|
|
depends 'yum-epel', '~> 0.6.0'
|