Files
cookbook-openstack-ops-data…/metadata.rb
Matt Ray 834838bcdc Basic testing of the ops-database recipes.
This creates basic testing of the recipes as well as remove unused code such as
the fedora support and the use of passing attributes to openstack::packages.

Change-Id: Iece19811151fbdfd067e12d3b3163cfb78174e49
2013-06-04 14:25:48 -05:00

20 lines
723 B
Ruby

name "openstack-ops-database"
maintainer "Opscode, Inc."
maintainer_email "matt@opscode.com"
license "Apache 2.0"
description "Provides the shared database configuration for Chef for OpenStack."
version "7.0.0"
recipe "client", "Installs client packages for the database used by the deployment."
recipe "server", "Installs and configures server packages for the database used by the deployment."
recipe "mysql-client", "Installs MySQL client packages."
recipe "mysql-server", "Installs and configured MySQL server packages."
%w{ ubuntu redhat centos }.each do |os|
supports os
end
depends "database", ">= 1.4"
depends "mysql", ">= 3.0.0"
depends "postgresql", ">= 3.0.0"