forked from chef-boneyard/database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
22 lines (19 loc) · 865 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name "database"
maintainer "Opscode, Inc."
maintainer_email "[email protected]"
license "Apache 2.0"
description "Sets up the database master or slave"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "1.4.1"
recipe "database", "Empty placeholder"
recipe "database::ebs_backup", "Considered deprecated, older way of backing up EBS volumes"
recipe "database::ebs_volume", "Sets up an EBS volume in EC2 for the database"
recipe "database::master", "Creates application specific user and database"
recipe "database::snapshot", "Locks tables and freezes XFS filesystem for replication, assumes EC2 + EBS"
depends "mysql", ">= 1.3.0"
depends "postgresql", ">= 1.0.0"
depends "aws"
depends "xfs"
%w{ debian ubuntu centos suse fedora redhat scientific amazon }.each do |os|
supports os
end