-
Notifications
You must be signed in to change notification settings - Fork 174
/
database.rb
93 lines (78 loc) · 2.47 KB
/
database.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#
# Cookbook Name:: wordpress
# Recipe:: database
# Author:: Lucas Hansen (<[email protected]>)
# Author:: Julian C. Dunn (<[email protected]>)
# Author:: Craig Tracey (<[email protected]>)
#
# Copyright (C) 2013, Chef Software, 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.
#
mysql_client 'default' do
action :create
not_if { node['platform_family'] == 'windows' }
end
mysql2_chef_gem 'default' do
action :install
end
::Chef::Recipe.send(:include, Opscode::OpenSSL::Password)
::Chef::Recipe.send(:include, Wordpress::Helpers)
node.set_unless['wordpress']['db']['pass'] = secure_password
node.save unless Chef::Config[:solo]
db = node['wordpress']['db']
if is_local_host? db['host']
# The following is required for the mysql community cookbook to work properly
include_recipe 'selinux::disabled' if node['platform_family'] == 'rhel'
mysql_service db['instance_name'] do
port db['port']
version db['mysql_version']
initial_root_password db['root_password']
action [:create, :start]
end
socket = "/var/run/mysql-#{db['instance_name']}/mysqld.sock"
if node['platform_family'] == 'debian'
link '/var/run/mysqld/mysqld.sock' do
to socket
not_if 'test -f /var/run/mysqld/mysqld.sock'
end
elsif node['platform_family'] == 'rhel'
link '/var/lib/mysql/mysql.sock' do
to socket
not_if 'test -f /var/lib/mysql/mysql.sock'
end
end
mysql_connection_info = {
:host => 'localhost',
:username => 'root',
:socket => socket,
:password => db['root_password']
}
mysql_database db['name'] do
connection mysql_connection_info
action :create
end
mysql_database_user db['user'] do
connection mysql_connection_info
password db['pass']
host db['host']
database_name db['name']
action :create
end
mysql_database_user db['user'] do
connection mysql_connection_info
database_name db['name']
privileges [:all]
action :grant
end
end