16 lines
998 B
Plaintext
16 lines
998 B
Plaintext
# Generated by Chef for <%= node['hostname'] %>.
|
|
# Local modifications will be overwritten.
|
|
|
|
<% case node['platform'] -%>
|
|
<% when "debian","ubuntu" -%>
|
|
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, SHUTDOWN, PROCESS, FILE, REFERENCES, INDEX, ALTER, SHOW DATABASES, SUPER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO 'debian-sys-maint'@'localhost' IDENTIFIED BY '<%= node[:mysql][:server_debian_password] %>' WITH GRANT OPTION;
|
|
<% end -%>
|
|
# Grant replication for a slave user.
|
|
GRANT REPLICATION SLAVE ON *.* TO 'repl'@'%' identified by '<%= node['mysql']['server_repl_password'] %>';
|
|
|
|
# Set the server root password. This should be preseeded by the package installation.
|
|
<% if node['mysql']['allow_remote_root'] -%>
|
|
GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY '<%= node['mysql']['server_root_password'] %>' WITH GRANT OPTION;
|
|
<% end -%>
|
|
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('<%= node['mysql']['server_root_password'] %>');
|