forked from openstack-archive/cookbook-openstack-common
-
Notifications
You must be signed in to change notification settings - Fork 1
/
metadata.rb
26 lines (22 loc) · 971 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name 'openstack-common'
maintainer 'openstack-chef'
maintainer_email '[email protected]'
license 'Apache-2.0'
description 'Common OpenStack attributes, libraries and recipes.'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '16.0.0'
recipe 'openstack-common', 'Installs/Configures common recipes'
recipe 'openstack-common::logging', 'Installs/Configures common logging'
recipe 'openstack-common::sysctl', 'Configures sysctl settings'
%w(ubuntu redhat centos).each do |os|
supports os
end
depends 'etcd', '~> 3.0'
depends 'mariadb', '~> 1.5'
depends 'memcached', '~> 4.1'
depends 'mysql', '~> 8.2'
depends 'poise-python', '~> 1.5'
depends 'selinux'
issues_url 'https://launchpad.net/openstack-chef' if respond_to?(:issues_url)
source_url 'https://github.com/openstack/cookbook-openstack-common' if respond_to?(:source_url)
chef_version '>= 12.5' if respond_to?(:chef_version)