forked from openstack-archive/cookbook-openstack-network
-
Notifications
You must be signed in to change notification settings - Fork 11
/
metadata.rb
20 lines (17 loc) · 1.04 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Encoding: utf-8
name 'openstack-network'
maintainer 'Jay Pipes <[email protected]>'
license 'Apache 2.0'
description 'Installs and configures the OpenStack Network API Service and various agents and plugins'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '9.1.2'
recipe 'openstack-network::client', 'Install packages required for network client'
recipe 'openstack-network::server', 'Installs packages required for a OpenStack Network server'
recipe 'openstack-network::openvswitch', 'Installs packages required for OVS'
recipe 'openstack-network::metadata_agent', 'Installs packages required for a OpenStack Network Metadata Agent'
recipe 'openstack-network::identity_registration', 'Registers OpenStack Network endpoints and service user with Keystone'
%w{ ubuntu fedora redhat centos suse }.each do |os|
supports os
end
depends 'openstack-identity', '~> 9.0'
depends 'openstack-common', '~> 9.5'