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
* mysql
* openssh
* rabbitmq
* selinux (Fedora)
* openstack-common
* openstack-utils
* rabbitmq
* selinux (Fedora)
Recipes
=======
@@ -40,6 +40,10 @@ api
- Installs the cinder-api, sets up the cinder database,
and cinder service/user/endpoints in keystone
db
--
- Creates the Cinder database
scheduler
----
- 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'))
version "2012.2.0"
supports "ubuntu"
supports "fedora"
supports "redhat"
recipe "cinder::api", "Installs the cinder-api, sets up the cinder database, and cinder service/user/endpoints in keystone"
recipe "cinder::db", "Creates the Cinder database"
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 "rabbitmq"
depends "database"
depends "glance"
depends "openstack-utils"
depends "keystone"
depends "mysql"
depends "openssh"
depends "openstack-common", ">= 0.1.5"
depends "openstack-utils"
depends "rabbitmq"
depends "selinux"