-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
74 lines (58 loc) · 2.42 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
maintainer "Opscode, Inc."
maintainer_email "[email protected]"
license "Apache 2.0"
description "Installs and configures mysql for client or server"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
version "0.23.1"
recipe "mysql", "Includes the client recipe to configure a client"
recipe "mysql::client", "Installs packages required for mysql clients using run_action magic"
recipe "mysql::server", "Installs packages required for mysql servers w/o manual intervention"
recipe "mysql::server_ec2", "Performs EC2-specific mountpoint manipulation"
%w{ debian ubuntu centos suse fedora redhat}.each do |os|
supports os
end
depends "openssl"
attribute "mysql/server_root_password",
:display_name => "MySQL Server Root Password",
:description => "Randomly generated password for the mysqld root user",
:default => "randomly generated"
attribute "mysql/bind_address",
:display_name => "MySQL Bind Address",
:description => "Address that mysqld should listen on",
:default => "ipaddress"
attribute "mysql/datadir",
:display_name => "MySQL Data Directory",
:description => "Location of mysql databases",
:default => "/var/lib/mysql"
attribute "mysql/ec2_path",
:display_name => "MySQL EC2 Path",
:description => "Location of mysql directory on EC2 instance EBS volumes",
:default => "/mnt/mysql"
attribute "mysql/tunable",
:display_name => "MySQL Tunables",
:description => "Hash of MySQL tunable attributes",
:type => "hash"
attribute "mysql/tunable/key_buffer",
:display_name => "MySQL Tuntable Key Buffer",
:default => "250M"
attribute "mysql/tunable/max_connections",
:display_name => "MySQL Tunable Max Connections",
:default => "800"
attribute "mysql/tunable/wait_timeout",
:display_name => "MySQL Tunable Wait Timeout",
:default => "180"
attribute "mysql/tunable/net_read_timeout",
:display_name => "MySQL Tunable Net Read Timeout",
:default => "30"
attribute "mysql/tunable/net_write_timeout",
:display_name => "MySQL Tunable Net Write Timeout",
:default => "30"
attribute "mysql/tunable/back_log",
:display_name => "MySQL Tunable Back Log",
:default => "128"
attribute "mysql/tunable/table_cache",
:display_name => "MySQL Tunable Table Cache",
:default => "128"
attribute "mysql/tunable/max_heap_table_size",
:display_name => "MySQL Tunable Max Heap Table Size",
:default => "32M"