Skip to main content

YOUR_NAME

#
# Cookbook Name:: myface
# Recipe:: database
#
# Copyright (C) 2012 YOUR_NAME
#
# All rights reserved - Do Not Redistribute
#



# Configure the MySQL client.
mysql_client 'default' do
  action :create
end

# Configure the MySQL service.
mysql_service "#{node['myface']['database']['name']}" do
  version '5.5'
  bind_address '0.0.0.0'
  port '3306'  
  initial_root_password "#{node['myface']['database']['password']}"
  action [:create, :start]
end

#mysql2_chef_gem 'default' do
#  action :install