forked from joerocklin/chef-mariadb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmetadata.rb
33 lines (28 loc) · 1.07 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name 'mariadb'
maintainer 'Joe Rocklin'
maintainer_email 'joe.rocklin@gmail.com'
license 'Apache 2.0'
description 'Installs and configures mariadb for client or server'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '2.1.1'
recipe 'mariadb', 'Includes the client recipe to configure a client'
recipe 'mariadb::client', 'Installs packages required for mariadb clients using run_action magic'
recipe 'mariadb::server', 'Installs packages required for mariadb servers w/o manual intervention'
recipe 'mariadb::server_ec2', 'Performs EC2-specific mountpoint manipulation'
# actually tested on
supports 'centos'
supports 'debian'
supports 'ubuntu'
# # code bits around, untested. remove?
supports 'redhat'
supports 'amazon'
supports 'freebsd'
supports 'mac_os_x'
supports 'scientific'
supports 'suse'
supports 'windows'
depends 'yum', '~> 3.0'
depends 'yum-epel'
depends 'apt', '~> 2.0'
depends 'openssl'
depends 'build-essential', '~> 2.0'