Metadata and README cleanups

This commit is contained in:
John Dewey
2013-01-03 22:14:08 -08:00
parent e501101f91
commit f593f2e41d
2 changed files with 19 additions and 10 deletions

View File

@@ -27,10 +27,10 @@ The following cookbooks are dependencies:
* keystone * keystone
* mysql * mysql
* openssh * openssh
* rabbitmq
* selinux (Fedora)
* openstack-common * openstack-common
* openstack-utils * openstack-utils
* rabbitmq
* selinux (Fedora)
Recipes Recipes
======= =======
@@ -40,6 +40,10 @@ api
- Installs the cinder-api, sets up the cinder database, - Installs the cinder-api, sets up the cinder database,
and cinder service/user/endpoints in keystone and cinder service/user/endpoints in keystone
db
--
- Creates the Cinder database
scheduler scheduler
---- ----
- Installs the cinder-scheduler service - Installs the cinder-scheduler service

View File

@@ -6,17 +6,22 @@ description "The OpenStack Advanced Volume Management service Cinder."
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "2012.2.0" version "2012.2.0"
supports "ubuntu" recipe "cinder::api", "Installs the cinder-api, sets up the cinder database, and cinder service/user/endpoints in keystone"
supports "fedora" recipe "cinder::db", "Creates the Cinder database"
supports "redhat" recipe "cinder::scheduler", "Installs the cinder-scheduler service"
recipe "cinder::volume", "Installs the cinder-volume service and sets up the iscsi helper"
%w{ ubuntu fedora redhat centos }.each do |os|
supports os
end
depends "mysql"
depends "database"
depends "openstack-common", ">= 0.1.5"
depends "apt" depends "apt"
depends "rabbitmq" depends "database"
depends "glance" depends "glance"
depends "openstack-utils"
depends "keystone" depends "keystone"
depends "mysql"
depends "openssh" depends "openssh"
depends "openstack-common", ">= 0.1.5"
depends "openstack-utils"
depends "rabbitmq"
depends "selinux" depends "selinux"