Skip to content

Instantly share code, notes, and snippets.

@cwjohnston
Created April 15, 2010 20:53
Show Gist options
  • Save cwjohnston/367641 to your computer and use it in GitHub Desktop.
Save cwjohnston/367641 to your computer and use it in GitHub Desktop.
#
# Cookbook Name:: mysql
# Recipe:: client
#
# Copyright 2008-2009, Opscode, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require 'rubygems'
Gem.clear_paths # needed for Chef to find the gem...
require 'mysql' # requires the mysql gem
p = package "mysql-devel" do
package_name value_for_platform(
[ "centos", "redhat", "suse" ] => { "default" => "mysql-devel" },
"default" => 'libmysqlclient15-dev'
)
action :nothing
end
p.run_action(:install)
package "mysql-client" do
package_name value_for_platform(
[ "centos", "redhat", "suse" ] => { "default" => "mysql" },
"default" => "mysql-client"
)
action :install
end
case node[:platform]
when "centos","redhat", "suse"
package "ruby-mysql" do
action :install
end
else
r = gem_package "mysql" do
action :nothing
end
r.run_action(:install)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment