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
20 lines
723 B
Ruby
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"
|