b1f90fd1d2
This is a major change to the module and would be released as a new version. * Add self.instances to database and database_user for puppet resource. * Update database provider to use flush method. * Update module to conform to puppet-lint recommendations. * Cleanup some unecessary logic in mysql::db define type. * Move mysql_restart to config class. * Use class to class dependency instead of resource dependency. * Change appropriate rspec-puppet tests. * Add fixtures directory to simplify testing. * Update raketask and spec_helper to reflect fixture changes. * Update mysql_password function to support validation. * Move client installation to a separate class. * Update documentation and readme.
77 lines
2.1 KiB
Puppet
77 lines
2.1 KiB
Puppet
# Define: mysql::db
|
|
#
|
|
# This module creates database instances, a user, and grants that user
|
|
# privileges to the database.
|
|
#
|
|
# Parameters:
|
|
# [*title*] - mysql database name.
|
|
# [*user*] - username to create and grant access.
|
|
# [*password*] - user's password.
|
|
# [*charset*] - database charset.
|
|
# [*host*] - host for assigning privileges to user.
|
|
# [*grant*] - array of privileges to grant user.
|
|
# [*enforce_sql*] - whether to enforce or conditionally run sql on creation.
|
|
# [*sql*] - sql statement to run.
|
|
#
|
|
# Actions:
|
|
#
|
|
# Requires:
|
|
#
|
|
# class mysql::server
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
# mysql::db { 'mydb':
|
|
# user => 'my_user',
|
|
# password => 'password',
|
|
# host => $::hostname,
|
|
# grant => ['all']
|
|
# }
|
|
#
|
|
define mysql::db (
|
|
$user,
|
|
$password,
|
|
$charset = 'utf8',
|
|
$host = 'localhost',
|
|
$grant = 'all',
|
|
$sql = '',
|
|
$enforce_sql = false
|
|
) {
|
|
|
|
if $grant == 'all' {
|
|
$safe_grant = [ 'alter_priv', 'alter_routine_priv', 'create_priv', 'create_routine_priv', 'create_tmp_table_priv', 'create_view_priv', 'delete_priv', 'drop_priv', 'event_priv', 'execute_priv', 'grant_priv', 'index_priv', 'insert_priv', 'lock_tables_priv', 'references_priv', 'select_priv', 'show_view_priv', 'trigger_priv', 'update_priv']
|
|
} else {
|
|
$safe_grant = $grant
|
|
}
|
|
|
|
database { $name:
|
|
ensure => present,
|
|
charset => $charset,
|
|
provider => 'mysql',
|
|
require => Class['mysql::server'],
|
|
}
|
|
|
|
database_user { "${user}@${host}":
|
|
ensure => present,
|
|
password_hash => mysql_password($password),
|
|
provider => 'mysql',
|
|
require => Database[$name],
|
|
}
|
|
|
|
database_grant { "${user}@${host}/${name}":
|
|
privileges => $safe_grant,
|
|
provider => 'mysql',
|
|
require => Database_user["${user}@${host}"],
|
|
}
|
|
|
|
if $sql {
|
|
exec{ "${name}-import":
|
|
command => "/usr/bin/mysql -u ${user} -p${password} -h ${host} ${name} < ${sql}",
|
|
logoutput => true,
|
|
refreshonly => ! $enforce_sql,
|
|
require => Database_grant["${user}@${host}/${name}"],
|
|
subscribe => Database[$name],
|
|
}
|
|
}
|
|
|
|
}
|