Skip to content

Commit

Permalink
mysql v1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jtimberman committed Feb 16, 2012
1 parent 7e3d7a4 commit 10f11fe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Expand Up @@ -63,7 +63,7 @@ On client nodes,

This will install the MySQL client libraries and development headers on the system. It will also install the Ruby Gem `mysql`, so that the cookbook's LWRP (above) can be used. This is done during the compile-phase of the Chef run. On platforms that are known to have a native package (currently Debian, Ubuntu, Red hat, Centos, Fedora and SUSE), the package will be installed. Other platforms will use the RubyGem.

This creates a resource object for the package and does the installation before other recipes are parsed. You'll need to have the C compiler and such (ie, build-essential on Ubuntu) before running the recipes, but we already do that when installing Chef :-).
This creates a resource object for the package and does the installation before other recipes are parsed. You'll need to have the C compiler and such (ie, build-essential on Ubuntu) before running the recipes, but we already do that when installing Chef :-).

On server nodes,

Expand All @@ -86,6 +86,12 @@ For more infromation on the compile vs execution phase of a Chef run:
Changes/Roadmap
===============

### v1.2.4

* [COOK-992] - fix FATAL nameerror
* [COOK-827] - `mysql:server_ec2` recipe can't mount `data_dir`
* [COOK-945] - FreeBSD support

### v1.2.2

* [COOK-826] mysql::server recipe doesn't quote password string
Expand Down
4 changes: 2 additions & 2 deletions metadata.rb
Expand Up @@ -3,13 +3,13 @@
license "Apache 2.0"
description "Installs and configures mysql for client or server"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "1.2.2"
version "1.2.4"
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 scientific amazon }.each do |os|
%w{ debian ubuntu centos suse fedora redhat scientific amazon freebsd}.each do |os|
supports os
end

Expand Down

0 comments on commit 10f11fe

Please sign in to comment.