server_maint 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitmodules +21 -0
- data/lib/cookbooks/aws/CHANGELOG.md +11 -0
- data/lib/cookbooks/aws/CONTRIBUTING +29 -0
- data/lib/cookbooks/aws/LICENSE +201 -0
- data/lib/cookbooks/aws/README.md +271 -0
- data/lib/cookbooks/aws/attributes/default.rb +20 -0
- data/lib/cookbooks/aws/libraries/ec2.rb +58 -0
- data/lib/cookbooks/aws/metadata.rb +7 -0
- data/lib/cookbooks/aws/providers/ebs_volume.rb +236 -0
- data/lib/cookbooks/aws/providers/elastic_ip.rb +90 -0
- data/lib/cookbooks/aws/providers/elastic_lb.rb +24 -0
- data/lib/cookbooks/aws/providers/resource_tag.rb +93 -0
- data/lib/cookbooks/aws/recipes/default.rb +25 -0
- data/lib/cookbooks/aws/resources/ebs_volume.rb +17 -0
- data/lib/cookbooks/aws/resources/elastic_ip.rb +11 -0
- data/lib/cookbooks/aws/resources/elastic_lb.rb +10 -0
- data/lib/cookbooks/aws/resources/resource_tag.rb +11 -0
- data/lib/cookbooks/database/.gitignore +1 -0
- data/lib/cookbooks/database/CHANGELOG.md +51 -0
- data/lib/cookbooks/database/CONTRIBUTING +29 -0
- data/lib/cookbooks/database/LICENSE +201 -0
- data/lib/cookbooks/database/README.md +468 -0
- data/lib/cookbooks/database/libraries/provider_database_mysql.rb +103 -0
- data/lib/cookbooks/database/libraries/provider_database_mysql_user.rb +76 -0
- data/lib/cookbooks/database/libraries/provider_database_postgresql.rb +131 -0
- data/lib/cookbooks/database/libraries/provider_database_postgresql_user.rb +83 -0
- data/lib/cookbooks/database/libraries/provider_database_sql_server.rb +109 -0
- data/lib/cookbooks/database/libraries/provider_database_sql_server_user.rb +106 -0
- data/lib/cookbooks/database/libraries/resource_database.rb +119 -0
- data/lib/cookbooks/database/libraries/resource_database_user.rb +90 -0
- data/lib/cookbooks/database/libraries/resource_mysql_database.rb +34 -0
- data/lib/cookbooks/database/libraries/resource_mysql_database_user.rb +34 -0
- data/lib/cookbooks/database/libraries/resource_postgresql_database.rb +35 -0
- data/lib/cookbooks/database/libraries/resource_postgresql_database_user.rb +35 -0
- data/lib/cookbooks/database/libraries/resource_sql_server_database.rb +34 -0
- data/lib/cookbooks/database/libraries/resource_sql_server_database_user.rb +34 -0
- data/lib/cookbooks/database/metadata.rb +22 -0
- data/lib/cookbooks/database/recipes/default.rb +20 -0
- data/lib/cookbooks/database/recipes/ebs_backup.rb +89 -0
- data/lib/cookbooks/database/recipes/ebs_volume.rb +204 -0
- data/lib/cookbooks/database/recipes/master.rb +78 -0
- data/lib/cookbooks/database/recipes/mysql.rb +20 -0
- data/lib/cookbooks/database/recipes/postgresql.rb +20 -0
- data/lib/cookbooks/database/recipes/snapshot.rb +62 -0
- data/lib/cookbooks/database/templates/default/app_grants.sql.erb +8 -0
- data/lib/cookbooks/database/templates/default/aws_config.erb +3 -0
- data/lib/cookbooks/database/templates/default/chef-solo-database-snapshot.cron.erb +6 -0
- data/lib/cookbooks/database/templates/default/chef-solo-database-snapshot.json.erb +1 -0
- data/lib/cookbooks/database/templates/default/chef-solo-database-snapshot.rb.erb +6 -0
- data/lib/cookbooks/database/templates/default/ebs-backup-cron.erb +2 -0
- data/lib/cookbooks/database/templates/default/ebs-db-backup.sh.erb +8 -0
- data/lib/cookbooks/database/templates/default/ebs-db-restore.sh.erb +10 -0
- data/lib/cookbooks/database/templates/default/s3cfg.erb +27 -0
- data/lib/cookbooks/mysql/.gitignore +5 -0
- data/lib/cookbooks/mysql/CHANGELOG.md +86 -0
- data/lib/cookbooks/mysql/CONTRIBUTING +29 -0
- data/lib/cookbooks/mysql/Gemfile +8 -0
- data/lib/cookbooks/mysql/LICENSE +201 -0
- data/lib/cookbooks/mysql/README.md +227 -0
- data/lib/cookbooks/mysql/attributes/client.rb +50 -0
- data/lib/cookbooks/mysql/attributes/server.rb +153 -0
- data/lib/cookbooks/mysql/files/default/tests/minitest/server_test.rb +36 -0
- data/lib/cookbooks/mysql/files/default/tests/minitest/support/helpers.rb +11 -0
- data/lib/cookbooks/mysql/libraries/helpers.rb +33 -0
- data/lib/cookbooks/mysql/metadata.rb +140 -0
- data/lib/cookbooks/mysql/recipes/client.rb +59 -0
- data/lib/cookbooks/mysql/recipes/default.rb +20 -0
- data/lib/cookbooks/mysql/recipes/ruby.rb +36 -0
- data/lib/cookbooks/mysql/recipes/server.rb +216 -0
- data/lib/cookbooks/mysql/recipes/server_ec2.rb +51 -0
- data/lib/cookbooks/mysql/templates/default/debian.cnf.erb +12 -0
- data/lib/cookbooks/mysql/templates/default/grants.sql.erb +15 -0
- data/lib/cookbooks/mysql/templates/default/my.cnf.erb +211 -0
- data/lib/cookbooks/mysql/templates/default/mysql-server.seed.erb +10 -0
- data/lib/cookbooks/mysql/templates/default/port_mysql.erb +3 -0
- data/lib/cookbooks/mysql/templates/windows/my.cnf.erb +61 -0
- data/lib/cookbooks/mysql/test/features/query_database.feature +26 -0
- data/lib/cookbooks/mysql/test/features/step_definitions/mysql_steps.rb +47 -0
- data/lib/cookbooks/mysql/test/features/support/env.rb +3 -0
- data/lib/cookbooks/mysql/test/features/support/mysql_helpers.rb +51 -0
- data/lib/cookbooks/mysql/test/kitchen/Kitchenfile +5 -0
- data/lib/cookbooks/mysql/test/kitchen/cookbooks/mysql_test/.gitignore +1 -0
- data/lib/cookbooks/mysql/test/kitchen/cookbooks/mysql_test/README.md +63 -0
- data/lib/cookbooks/mysql/test/kitchen/cookbooks/mysql_test/attributes/default.rb +27 -0
- data/lib/cookbooks/mysql/test/kitchen/cookbooks/mysql_test/metadata.rb +10 -0
- data/lib/cookbooks/mysql/test/kitchen/cookbooks/mysql_test/recipes/client.rb +20 -0
- data/lib/cookbooks/mysql/test/kitchen/cookbooks/mysql_test/recipes/server.rb +72 -0
- data/lib/cookbooks/openssl/CHANGELOG.md +0 -0
- data/lib/cookbooks/openssl/CONTRIBUTING +29 -0
- data/lib/cookbooks/openssl/LICENSE +201 -0
- data/lib/cookbooks/openssl/README.md +37 -0
- data/lib/cookbooks/openssl/libraries/secure_password.rb +37 -0
- data/lib/cookbooks/openssl/metadata.rb +8 -0
- data/lib/cookbooks/openssl/recipes/default.rb +19 -0
- data/lib/cookbooks/postgresql/CHANGELOG.md +35 -0
- data/lib/cookbooks/postgresql/CONTRIBUTING +29 -0
- data/lib/cookbooks/postgresql/LICENSE +201 -0
- data/lib/cookbooks/postgresql/README.md +148 -0
- data/lib/cookbooks/postgresql/attributes/default.rb +103 -0
- data/lib/cookbooks/postgresql/metadata.rb +21 -0
- data/lib/cookbooks/postgresql/recipes/client.rb +26 -0
- data/lib/cookbooks/postgresql/recipes/default.rb +20 -0
- data/lib/cookbooks/postgresql/recipes/ruby.rb +40 -0
- data/lib/cookbooks/postgresql/recipes/server.rb +64 -0
- data/lib/cookbooks/postgresql/recipes/server_debian.rb +64 -0
- data/lib/cookbooks/postgresql/recipes/server_redhat.rb +77 -0
- data/lib/cookbooks/postgresql/templates/default/debian.postgresql.conf.erb +499 -0
- data/lib/cookbooks/postgresql/templates/default/pg_hba.conf.erb +83 -0
- data/lib/cookbooks/postgresql/templates/default/redhat.postgresql.conf.erb +501 -0
- data/lib/cookbooks/sqlite/.gitignore +4 -0
- data/lib/cookbooks/sqlite/CHANGELOG.md +3 -0
- data/lib/cookbooks/sqlite/CONTRIBUTING +29 -0
- data/lib/cookbooks/sqlite/Gemfile +2 -0
- data/lib/cookbooks/sqlite/LICENSE +201 -0
- data/lib/cookbooks/sqlite/README.md +36 -0
- data/lib/cookbooks/sqlite/metadata.rb +12 -0
- data/lib/cookbooks/sqlite/recipes/default.rb +30 -0
- data/lib/cookbooks/sqlite/test/kitchen/Kitchenfile +1 -0
- data/lib/cookbooks/xfs/CHANGELOG.md +0 -0
- data/lib/cookbooks/xfs/CONTRIBUTING +29 -0
- data/lib/cookbooks/xfs/LICENSE +201 -0
- data/lib/cookbooks/xfs/README.md +30 -0
- data/lib/cookbooks/xfs/metadata.rb +12 -0
- data/lib/cookbooks/xfs/recipes/default.rb +26 -0
- data/lib/server_maint/version.rb +1 -1
- metadata +127 -4
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
@@ -0,0 +1,227 @@
|
|
1
|
+
Description
|
2
|
+
===========
|
3
|
+
|
4
|
+
Installs and configures MySQL client or server.
|
5
|
+
|
6
|
+
Requirements
|
7
|
+
============
|
8
|
+
|
9
|
+
Chef 0.10.10+.
|
10
|
+
|
11
|
+
Platform
|
12
|
+
--------
|
13
|
+
|
14
|
+
* Debian, Ubuntu
|
15
|
+
* CentOS, Red Hat, Fedora
|
16
|
+
* Mac OS X (Using homebrew)
|
17
|
+
|
18
|
+
Tested on:
|
19
|
+
|
20
|
+
* Debian 5.0, 6.0
|
21
|
+
* Ubuntu 10.04-12.04
|
22
|
+
* CentOS 5.5-5.8, 6.2-6.3
|
23
|
+
* Mac OS X 10.7.2
|
24
|
+
|
25
|
+
Cookbooks
|
26
|
+
---------
|
27
|
+
|
28
|
+
Requires Opscode's openssl cookbook for secure password generation.
|
29
|
+
See _Attributes_ and _Usage_ for more information.
|
30
|
+
|
31
|
+
The RubyGem installation in the `mysql::ruby` recipe requires a C
|
32
|
+
compiler and Ruby development headers to be installed in order to
|
33
|
+
build the mysql gem.
|
34
|
+
|
35
|
+
Requires `homebrew`
|
36
|
+
[cookbook](http://community.opscode.com/cookbooks/homebrew) on Mac OS
|
37
|
+
X.
|
38
|
+
|
39
|
+
Resources and Providers
|
40
|
+
=======================
|
41
|
+
|
42
|
+
The LWRP that used to ship as part of this cookbook has been
|
43
|
+
refactored into the
|
44
|
+
[database](http://community.opscode.com/cookbooks/database)
|
45
|
+
cookbook. Please see the README for details on updated usage.
|
46
|
+
|
47
|
+
Attributes
|
48
|
+
==========
|
49
|
+
|
50
|
+
See the `attributes/server.rb` or `attributes/client.rb` for default
|
51
|
+
values. Several attributes have values that vary based on the node's
|
52
|
+
platform and version.
|
53
|
+
|
54
|
+
* `node['mysql']['client']['packages']` - An array of package names
|
55
|
+
that should be installed on "client" systems. This can be modified,
|
56
|
+
e.g., to specify packages for Percona.
|
57
|
+
* `node['mysql']['server']['packages']` - An array of package names
|
58
|
+
that should be installed on "server" systems. This can be modified,
|
59
|
+
e.g., to specify packages for Percona.
|
60
|
+
|
61
|
+
* `node['mysql']['auto-increment-increment']` -
|
62
|
+
auto-increment-increment value in my.cnf
|
63
|
+
* `node['mysql']['auto-increment-offset]` - auto-increment-offset
|
64
|
+
value in my.cnf
|
65
|
+
* `node['mysql']['basedir']` - Base directory where MySQL is installed
|
66
|
+
* `node['mysql']['bind_address']` - Listen address for MySQLd
|
67
|
+
* `node['mysql']['conf_dir']` - Location for mysql conf directory
|
68
|
+
* `node['mysql']['confd_dir']` - Location for mysql conf.d style
|
69
|
+
include directory
|
70
|
+
* `node['mysql']['data_dir']` - Location for mysql data directory
|
71
|
+
* `node['mysql']['ec2_path']` - location of mysql data_dir on EC2
|
72
|
+
nodes
|
73
|
+
* `node['mysql']['grants_path']` - Path where the grants.sql should be
|
74
|
+
written
|
75
|
+
* `node['mysql']['mysqladmin_bin']` - Path to the mysqladmin binary
|
76
|
+
* `node['mysql']['old_passwords']` - Sets the `old_passwords` value in
|
77
|
+
my.cnf.
|
78
|
+
* `node['mysql']['pid_file']` - Path to the mysqld.pid file
|
79
|
+
* `node['mysql']['port']` - Liten port for MySQLd
|
80
|
+
* `node['mysql']['reload_action']` - Action to take when mysql conf
|
81
|
+
files are modified. Also allows "reload" and "none".
|
82
|
+
* `node['mysql']['root_group']` - The default group of the "root" user
|
83
|
+
* `node['mysql']['service_name']` - The name of the mysqld service
|
84
|
+
* `node['mysql']['socket']` - Path to the mysqld.sock file
|
85
|
+
* `node['mysql']['use_upstart']` - Whether to use upstart for the
|
86
|
+
service provider
|
87
|
+
|
88
|
+
Performance and other "tunable" attributes are under the
|
89
|
+
`node['mysql']['tunable']` attribute, corresponding to the same-named
|
90
|
+
parameter in my.cnf, and the default values are used. See
|
91
|
+
`attributes/server.rb`.
|
92
|
+
|
93
|
+
The following attributes are randomly generated passwords handled in
|
94
|
+
the `mysql::server` recipe, using the OpenSSL cookbook's
|
95
|
+
`secure_password` helper method. These are set using the `set_unless`
|
96
|
+
node attribute method, which allows them to be easily overridden e.g.
|
97
|
+
in a role.
|
98
|
+
|
99
|
+
* `node['mysql']['server_root_password']` - Set the server's root
|
100
|
+
password
|
101
|
+
* `node['mysql']['server_repl_password']` - Set the replication user
|
102
|
+
'repl' password
|
103
|
+
* `node['mysql']['server_debian_password']` - Set the debian-sys-maint
|
104
|
+
user password
|
105
|
+
|
106
|
+
## Windows Specific
|
107
|
+
|
108
|
+
The following attributes are specific to Windows platforms.
|
109
|
+
|
110
|
+
* `node['mysql']['client']['version']` - The version of MySQL
|
111
|
+
connector to install.
|
112
|
+
* `node['mysql']['client']['arch']` - Force 32 bit to work with the
|
113
|
+
mysql gem
|
114
|
+
* `node['mysql']['client']['package_file']` - The MSI file for the
|
115
|
+
mysql connector.
|
116
|
+
* `node['mysql']['client']['url']` - URL to download the mysql
|
117
|
+
connector.
|
118
|
+
* `node['mysql']['client']['packages']` - Similar to other platforms,
|
119
|
+
this is the name of the client package.
|
120
|
+
* `node['mysql']['client']['basedir']` - Base installation location
|
121
|
+
* `node['mysql']['client']['lib_dir']` - Libraries under the base location
|
122
|
+
* `node['mysql']['client']['bin_dir']` - binary directory under base location
|
123
|
+
* `node['mysql']['client']['ruby_dir']` - location where the Ruby
|
124
|
+
binaries will be
|
125
|
+
|
126
|
+
Usage
|
127
|
+
=====
|
128
|
+
|
129
|
+
On client nodes, use the client (or default) recipe:
|
130
|
+
|
131
|
+
{ "run_list": ["recipe[mysql::client]"] }
|
132
|
+
|
133
|
+
This will install the MySQL client libraries and development headers
|
134
|
+
on the system.
|
135
|
+
|
136
|
+
On nodes which may use the `database` cookbook's mysql resources, also
|
137
|
+
use the ruby recipe. This installs the mysql RubyGem in the Ruby
|
138
|
+
environment Chef is using via `chef_gem`.
|
139
|
+
|
140
|
+
{ "run_list": ["recipe[mysql::client]", "recipe[mysql::ruby]"] }
|
141
|
+
|
142
|
+
If you need to install the mysql Ruby library as a package for your
|
143
|
+
system, override the client packages attribute in your node or role.
|
144
|
+
For example, on an Ubuntu system:
|
145
|
+
|
146
|
+
{
|
147
|
+
"mysql": {
|
148
|
+
"client": {
|
149
|
+
"packages": ["mysql-client", "libmysqlclient-dev","ruby-mysql"]
|
150
|
+
}
|
151
|
+
}
|
152
|
+
}
|
153
|
+
|
154
|
+
This creates a resource object for the package and does the
|
155
|
+
installation before other recipes are parsed. You'll need to have the
|
156
|
+
C compiler and such (ie, build-essential on Ubuntu) before running the
|
157
|
+
recipes, but we already do that when installing Chef :-).
|
158
|
+
|
159
|
+
On server nodes, use the server recipe:
|
160
|
+
|
161
|
+
{ "run_list": ["recipe[mysql::server]"] }
|
162
|
+
|
163
|
+
On Debian and Ubuntu, this will preseed the mysql-server package with
|
164
|
+
the randomly generated root password in the recipe file. On other
|
165
|
+
platforms, it simply installs the required packages. It will also
|
166
|
+
create an SQL file, `/etc/mysql/grants.sql`, that will be used to set up
|
167
|
+
grants for the root, repl and debian-sys-maint users.
|
168
|
+
|
169
|
+
The recipe will perform a `node.save` unless it is run under
|
170
|
+
`chef-solo` after the password attributes are used to ensure that in
|
171
|
+
the event of a failed run, the saved attributes would be used.
|
172
|
+
|
173
|
+
On EC2 nodes, use the `server_ec2` recipe and the mysql data dir will
|
174
|
+
be set up in the ephmeral storage.
|
175
|
+
|
176
|
+
{ "run_list": ["recipe[mysql::server_ec2]"] }
|
177
|
+
|
178
|
+
When the `ec2_path` doesn't exist we look for a mounted filesystem
|
179
|
+
(eg, EBS) and move the data_dir there.
|
180
|
+
|
181
|
+
The client recipe is already included by server and 'default' recipes.
|
182
|
+
|
183
|
+
For more infromation on the compile vs execution phase of a Chef run:
|
184
|
+
|
185
|
+
* http://wiki.opscode.com/display/chef/Anatomy+of+a+Chef+Run
|
186
|
+
|
187
|
+
Chef Solo Note
|
188
|
+
==============
|
189
|
+
|
190
|
+
These node attributes are stored on the Chef
|
191
|
+
server when using `chef-client`. Because `chef-solo` does not
|
192
|
+
connect to a server or save the node object at all, to have the same
|
193
|
+
passwords persist across `chef-solo` runs, you must specify them in
|
194
|
+
the `json_attribs` file used. For example:
|
195
|
+
|
196
|
+
{
|
197
|
+
"mysql": {
|
198
|
+
"server_root_password": "iloverandompasswordsbutthiswilldo",
|
199
|
+
"server_repl_password": "iloverandompasswordsbutthiswilldo",
|
200
|
+
"server_debian_password": "iloverandompasswordsbutthiswilldo"
|
201
|
+
},
|
202
|
+
"run_list":["recipe[mysql::server]"]
|
203
|
+
}
|
204
|
+
|
205
|
+
License and Author
|
206
|
+
==================
|
207
|
+
|
208
|
+
- Author:: Joshua Timberman (<joshua@opscode.com>)
|
209
|
+
- Author:: AJ Christensen (<aj@opscode.com>)
|
210
|
+
- Author:: Seth Chisamore (<schisamo@opscode.com>)
|
211
|
+
- Author:: Brian Bianco (<brian.bianco@gmail.com>)
|
212
|
+
- Author:: Jesse Howarth (<him@jessehowarth.com>)
|
213
|
+
- Author:: Andrew Crump (<andrew@kotirisoftware.com>)
|
214
|
+
|
215
|
+
Copyright:: 2009-2012 Opscode, Inc
|
216
|
+
|
217
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
218
|
+
you may not use this file except in compliance with the License.
|
219
|
+
You may obtain a copy of the License at
|
220
|
+
|
221
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
222
|
+
|
223
|
+
Unless required by applicable law or agreed to in writing, software
|
224
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
225
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
226
|
+
See the License for the specific language governing permissions and
|
227
|
+
limitations under the License.
|
@@ -0,0 +1,50 @@
|
|
1
|
+
#
|
2
|
+
# Cookbook Name:: mysql
|
3
|
+
# Attributes:: client
|
4
|
+
#
|
5
|
+
# Copyright 2008-2009, Opscode, Inc.
|
6
|
+
#
|
7
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
# you may not use this file except in compliance with the License.
|
9
|
+
# You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing, software
|
14
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
# See the License for the specific language governing permissions and
|
17
|
+
# limitations under the License.
|
18
|
+
#
|
19
|
+
# Include Opscode helper in Node class to get access
|
20
|
+
# to debian_before_squeeze? and ubuntu_before_lucid?
|
21
|
+
::Chef::Node.send(:include, Opscode::Mysql::Helpers)
|
22
|
+
|
23
|
+
case node['platform']
|
24
|
+
when "centos", "redhat", "suse", "fedora", "scientific", "amazon"
|
25
|
+
default['mysql']['client']['packages'] = %w{mysql mysql-devel}
|
26
|
+
when "ubuntu","debian"
|
27
|
+
if debian_before_squeeze? || ubuntu_before_lucid?
|
28
|
+
default['mysql']['client']['packages'] = %w{mysql-client libmysqlclient15-dev}
|
29
|
+
else
|
30
|
+
default['mysql']['client']['packages'] = %w{mysql-client libmysqlclient-dev}
|
31
|
+
end
|
32
|
+
when "freebsd"
|
33
|
+
default['mysql']['client']['packages'] = %w{mysql55-client}
|
34
|
+
when "windows"
|
35
|
+
default['mysql']['client']['version'] = "6.0.2"
|
36
|
+
default['mysql']['client']['arch'] = "win32" # force 32 bit to work with mysql gem
|
37
|
+
default['mysql']['client']['package_file'] = "mysql-connector-c-#{mysql['client']['version']}-#{mysql['client']['arch']}.msi"
|
38
|
+
default['mysql']['client']['url'] = "http://www.mysql.com/get/Downloads/Connector-C/#{mysql['client']['package_file']}/from/http://mysql.mirrors.pair.com/"
|
39
|
+
default['mysql']['client']['packages'] = ["MySQL Connector C #{mysql['client']['version']}"]
|
40
|
+
|
41
|
+
default['mysql']['client']['basedir'] = "#{ENV['SYSTEMDRIVE']}\\Program Files (x86)\\MySQL\\#{mysql['client']['packages'].first}"
|
42
|
+
default['mysql']['client']['lib_dir'] = "#{mysql['client']['basedir']}\\lib/opt"
|
43
|
+
default['mysql']['client']['bin_dir'] = "#{mysql['client']['basedir']}\\bin"
|
44
|
+
default['mysql']['client']['ruby_dir'] = RbConfig::CONFIG['bindir']
|
45
|
+
when "mac_os_x"
|
46
|
+
default['mysql']['client']['packages'] = %w{mysql-connector-c}
|
47
|
+
else
|
48
|
+
default['mysql']['client']['packages'] = %w{mysql-client libmysqlclient-dev}
|
49
|
+
end
|
50
|
+
|
@@ -0,0 +1,153 @@
|
|
1
|
+
#
|
2
|
+
# Cookbook Name:: mysql
|
3
|
+
# Attributes:: server
|
4
|
+
#
|
5
|
+
# Copyright 2008-2009, Opscode, Inc.
|
6
|
+
#
|
7
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
# you may not use this file except in compliance with the License.
|
9
|
+
# You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing, software
|
14
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
# See the License for the specific language governing permissions and
|
17
|
+
# limitations under the License.
|
18
|
+
#
|
19
|
+
|
20
|
+
default['mysql']['bind_address'] = attribute?('cloud') ? cloud['local_ipv4'] : ipaddress
|
21
|
+
default['mysql']['port'] = 3306
|
22
|
+
|
23
|
+
case node["platform"]
|
24
|
+
when "centos", "redhat", "fedora", "suse", "scientific", "amazon"
|
25
|
+
default['mysql']['server']['packages'] = %w{mysql-server}
|
26
|
+
default['mysql']['service_name'] = "mysqld"
|
27
|
+
default['mysql']['basedir'] = "/usr"
|
28
|
+
default['mysql']['data_dir'] = "/var/lib/mysql"
|
29
|
+
default['mysql']['root_group'] = "root"
|
30
|
+
default['mysql']['mysqladmin_bin'] = "/usr/bin/mysqladmin"
|
31
|
+
default['mysql']['mysql_bin'] = "/usr/bin/mysql"
|
32
|
+
|
33
|
+
set['mysql']['conf_dir'] = '/etc'
|
34
|
+
set['mysql']['confd_dir'] = '/etc/mysql/conf.d'
|
35
|
+
set['mysql']['socket'] = "/var/lib/mysql/mysql.sock"
|
36
|
+
set['mysql']['pid_file'] = "/var/run/mysqld/mysqld.pid"
|
37
|
+
set['mysql']['old_passwords'] = 1
|
38
|
+
set['mysql']['grants_path'] = "/etc/mysql_grants.sql"
|
39
|
+
# RHEL/CentOS mysql package does not support this option.
|
40
|
+
set['mysql']['tunable']['innodb_adaptive_flushing'] = false
|
41
|
+
when "freebsd"
|
42
|
+
default['mysql']['server']['packages'] = %w{mysql55-server}
|
43
|
+
default['mysql']['service_name'] = "mysql-server"
|
44
|
+
default['mysql']['basedir'] = "/usr/local"
|
45
|
+
default['mysql']['data_dir'] = "/var/db/mysql"
|
46
|
+
default['mysql']['root_group'] = "wheel"
|
47
|
+
default['mysql']['mysqladmin_bin'] = "/usr/local/bin/mysqladmin"
|
48
|
+
default['mysql']['mysql_bin'] = "/usr/local/bin/mysql"
|
49
|
+
|
50
|
+
set['mysql']['conf_dir'] = '/usr/local/etc'
|
51
|
+
set['mysql']['confd_dir'] = '/usr/local/etc/mysql/conf.d'
|
52
|
+
set['mysql']['socket'] = "/tmp/mysqld.sock"
|
53
|
+
set['mysql']['pid_file'] = "/var/run/mysqld/mysqld.pid"
|
54
|
+
set['mysql']['old_passwords'] = 0
|
55
|
+
set['mysql']['grants_path'] = "/var/db/mysql/grants.sql"
|
56
|
+
when "windows"
|
57
|
+
default['mysql']['server']['packages'] = ["MySQL Server 5.5"]
|
58
|
+
default['mysql']['version'] = '5.5.21'
|
59
|
+
default['mysql']['arch'] = 'win32'
|
60
|
+
default['mysql']['package_file'] = "mysql-#{mysql['version']}-#{mysql['arch']}.msi"
|
61
|
+
default['mysql']['url'] = "http://www.mysql.com/get/Downloads/MySQL-5.5/#{mysql['package_file']}/from/http://mysql.mirrors.pair.com/"
|
62
|
+
|
63
|
+
default['mysql']['service_name'] = "mysql"
|
64
|
+
default['mysql']['basedir'] = "#{ENV['SYSTEMDRIVE']}\\Program Files (x86)\\MySQL\\#{mysql['server']['packages'].first}"
|
65
|
+
default['mysql']['data_dir'] = "#{mysql['basedir']}\\Data"
|
66
|
+
default['mysql']['bin_dir'] = "#{mysql['basedir']}\\bin"
|
67
|
+
default['mysql']['mysqladmin_bin'] = "#{mysql['bin_dir']}\\mysqladmin"
|
68
|
+
default['mysql']['mysql_bin'] = "#{mysql['bin_dir']}\\mysql"
|
69
|
+
|
70
|
+
default['mysql']['conf_dir'] = "#{mysql['basedir']}"
|
71
|
+
default['mysql']['old_passwords'] = 0
|
72
|
+
default['mysql']['grants_path'] = "#{mysql['conf_dir']}\\grants.sql"
|
73
|
+
when "mac_os_x"
|
74
|
+
default['mysql']['server']['packages'] = %w{mysql}
|
75
|
+
default['mysql']['basedir'] = "/usr/local/Cellar"
|
76
|
+
default['mysql']['data_dir'] = "/usr/local/var/mysql"
|
77
|
+
default['mysql']['root_group'] = "admin"
|
78
|
+
default['mysql']['mysqladmin_bin'] = "/usr/local/bin/mysqladmin"
|
79
|
+
default['mysql']['mysql_bin'] = "/usr/local/bin/mysql"
|
80
|
+
else
|
81
|
+
default['mysql']['server']['packages'] = %w{mysql-server}
|
82
|
+
default['mysql']['service_name'] = "mysql"
|
83
|
+
default['mysql']['basedir'] = "/usr"
|
84
|
+
default['mysql']['data_dir'] = "/var/lib/mysql"
|
85
|
+
default['mysql']['root_group'] = "root"
|
86
|
+
default['mysql']['mysqladmin_bin'] = "/usr/bin/mysqladmin"
|
87
|
+
default['mysql']['mysql_bin'] = "/usr/bin/mysql"
|
88
|
+
|
89
|
+
set['mysql']['conf_dir'] = '/etc/mysql'
|
90
|
+
set['mysql']['confd_dir'] = '/etc/mysql/conf.d'
|
91
|
+
set['mysql']['socket'] = "/var/run/mysqld/mysqld.sock"
|
92
|
+
set['mysql']['pid_file'] = "/var/run/mysqld/mysqld.pid"
|
93
|
+
set['mysql']['old_passwords'] = 0
|
94
|
+
set['mysql']['grants_path'] = "/etc/mysql/grants.sql"
|
95
|
+
end
|
96
|
+
|
97
|
+
if attribute?('ec2')
|
98
|
+
default['mysql']['ec2_path'] = "/mnt/mysql"
|
99
|
+
default['mysql']['ebs_vol_dev'] = "/dev/sdi"
|
100
|
+
default['mysql']['ebs_vol_size'] = 50
|
101
|
+
end
|
102
|
+
|
103
|
+
default['mysql']['reload_action'] = "restart" # or "reload" or "none"
|
104
|
+
|
105
|
+
default['mysql']['use_upstart'] = node.platform?("ubuntu") && node.platform_version.to_f >= 10.04
|
106
|
+
|
107
|
+
default['mysql']['auto-increment-increment'] = 1
|
108
|
+
default['mysql']['auto-increment-offset'] = 1
|
109
|
+
|
110
|
+
default['mysql']['allow_remote_root'] = false
|
111
|
+
default['mysql']['tunable']['back_log'] = "128"
|
112
|
+
default['mysql']['tunable']['key_buffer'] = "256M"
|
113
|
+
default['mysql']['tunable']['max_allowed_packet'] = "16M"
|
114
|
+
default['mysql']['tunable']['max_connections'] = "800"
|
115
|
+
default['mysql']['tunable']['max_heap_table_size'] = "32M"
|
116
|
+
default['mysql']['tunable']['myisam_recover'] = "BACKUP"
|
117
|
+
default['mysql']['tunable']['net_read_timeout'] = "30"
|
118
|
+
default['mysql']['tunable']['net_write_timeout'] = "30"
|
119
|
+
default['mysql']['tunable']['table_cache'] = "128"
|
120
|
+
default['mysql']['tunable']['table_open_cache'] = "128"
|
121
|
+
default['mysql']['tunable']['thread_cache'] = "128"
|
122
|
+
default['mysql']['tunable']['thread_cache_size'] = 8
|
123
|
+
default['mysql']['tunable']['thread_concurrency'] = 10
|
124
|
+
default['mysql']['tunable']['thread_stack'] = "256K"
|
125
|
+
default['mysql']['tunable']['wait_timeout'] = "180"
|
126
|
+
|
127
|
+
default['mysql']['tunable']['log_bin'] = nil
|
128
|
+
default['mysql']['tunable']['log_bin_trust_function_creators'] = false
|
129
|
+
default['mysql']['tunable']['relay_log'] = nil
|
130
|
+
default['mysql']['tunable']['log_slave_updates'] = false
|
131
|
+
default['mysql']['tunable']['sync_binlog'] = 0
|
132
|
+
default['mysql']['tunable']['skip_slave_start'] = false
|
133
|
+
|
134
|
+
default['mysql']['tunable']['log_error'] = nil
|
135
|
+
default['mysql']['tunable']['log_queries_not_using_index'] = true
|
136
|
+
default['mysql']['tunable']['log_bin_trust_function_creators'] = false
|
137
|
+
|
138
|
+
default['mysql']['tunable']['innodb_buffer_pool_size'] = "128M"
|
139
|
+
default['mysql']['tunable']['innodb_log_file_size'] = "5M"
|
140
|
+
default['mysql']['tunable']['innodb_additional_mem_pool_size'] = "8M"
|
141
|
+
default['mysql']['tunable']['innodb_data_file_path'] = "ibdata1:10M:autoextend"
|
142
|
+
default['mysql']['tunable']['innodb_flush_log_at_trx_commit'] = "1"
|
143
|
+
default['mysql']['tunable']['innodb_flush_method'] = false
|
144
|
+
default['mysql']['tunable']['innodb_log_buffer_size'] = "8M"
|
145
|
+
|
146
|
+
default['mysql']['tunable']['query_cache_limit'] = "1M"
|
147
|
+
default['mysql']['tunable']['query_cache_size'] = "16M"
|
148
|
+
|
149
|
+
default['mysql']['tunable']['log_slow_queries'] = "/var/log/mysql/slow.log"
|
150
|
+
default['mysql']['tunable']['long_query_time'] = 2
|
151
|
+
|
152
|
+
default['mysql']['tunable']['expire_logs_days'] = 10
|
153
|
+
default['mysql']['tunable']['max_binlog_size'] = "100M"
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require File.expand_path('../support/helpers.rb', __FILE__)
|
2
|
+
|
3
|
+
describe 'mysql::server' do
|
4
|
+
|
5
|
+
include Helpers::Mysql
|
6
|
+
|
7
|
+
it 'has a secure operating system password' do
|
8
|
+
assert_secure_password(:debian)
|
9
|
+
end
|
10
|
+
it 'has a secure root password' do
|
11
|
+
assert_secure_password(:root)
|
12
|
+
end
|
13
|
+
it 'has a secure replication password' do
|
14
|
+
assert_secure_password(:repl)
|
15
|
+
end
|
16
|
+
it 'installs the mysql packages' do
|
17
|
+
node['mysql']['server']['packages'].each do |package_name|
|
18
|
+
package(package_name).must_be_installed
|
19
|
+
end
|
20
|
+
end
|
21
|
+
it 'has a config directory' do
|
22
|
+
directory(node['mysql']['confd_dir']).must_exist.with(:owner, 'mysql').and(:group, 'mysql')
|
23
|
+
end
|
24
|
+
it 'runs as a daemon' do
|
25
|
+
service(node['mysql']['service_name']).must_be_running
|
26
|
+
end
|
27
|
+
it 'creates a my.cnf' do
|
28
|
+
file("#{node['mysql']['conf_dir']}/my.cnf").must_exist
|
29
|
+
end
|
30
|
+
describe 'debian' do
|
31
|
+
it 'creates a config file for service control' do
|
32
|
+
skip unless ['debian', 'ubuntu'].include?(node[:platform])
|
33
|
+
file("#{node['mysql']['conf_dir']}/debian.cnf").must_exist
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|