Defined Type: mysql::grant
- Defined in:
- manifests/grant.pp
Overview
Define mysql::grant
This define adds a grant to the MySQL server. It creates a file with the grant statement and then applies it.
Supported arguments: $mysql_db - The database to apply the grant to.
If not set, defaults to == $title
It supports SQL wildcards (%), ie: 'somedatab%'.
The special value '*' means 'ALL DATABASES'
$mysql_user - User to grant the permissions to. $mysql_password - Plaintext password for the user. $mysql_create_db - If you want a $mysql_db database created or not.
Default: true.
$mysql_privileges - Privileges to grant to the user.
Defaults to 'ALL'
$mysql_host - Host where the user can connect from. Accepts SQL wildcards.
Default: 'localhost'
$mysql_grant_filepath - Path where the grant files will be stored.
Default: '/root/puppet-mysql'
$mysql_db_init_query_file - Location of a sql file typically used to create the schema.
$mysql_create_db must be true or the database must exist.
Default: ''
$remote_host - Host on which to run the command. If not specified, the
command will be run on localhost.
Default: ''
$remote_user - User to connect with when running the command on a remote
server.
Default: ''
$remote_password - Password to use when running the command on a remote server.
Default: ''
$require_ssl - Define if SSL connection is required for the user.
Default: false
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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'manifests/grant.pp', line 34
define mysql::grant (
$mysql_user,
$mysql_password,
$ensure = 'present',
$mysql_db = '',
$mysql_db_create_options = '',
$mysql_create_db = true,
$mysql_privileges = 'ALL',
$mysql_host = 'localhost',
$mysql_grant_filepath = '/root/puppet-mysql',
$mysql_db_init_query_file = '',
$remote_host = '',
$remote_user = '',
$remote_password = '',
$require_ssl = false,
) {
if $remote_host == '' {
include mysql
}
$dbname = $mysql_db ? {
'' => $name,
default => $mysql_db,
}
$real_db_create_options = $mysql_db_create_options ? {
'' => '',
default => " ${mysql_db_create_options}",
}
# Check for wildcards
$real_db = $dbname ? {
/^(\*|%)$/ => '*',
default => "`${dbname}`",
}
$nice_mysql_host = regsubst($mysql_host, '/', '_')
$grant_file_host = $remote_host ? {
'' => '',
default => "-${remote_host}",
}
$mysql_grant_file = $dbname ? {
/^(\*|%)$/ => "mysqlgrant${grant_file_host}-${mysql_user}-${nice_mysql_host}-all.sql",
default => "mysqlgrant${grant_file_host}-${mysql_user}-${nice_mysql_host}-${dbname}.sql",
}
$mysql_grant_template = $ensure ? {
'absent' => 'mysql/revoke.erb',
default => 'mysql/grant.erb',
}
# If dbname has a wildcard, we don't want to create anything
$bool_mysql_create_db = $dbname ? {
/(\*|%)/ => false,
default => any2bool($mysql_create_db)
}
$manage_remote_host = $remote_host ? {
'' => 'localhost',
default => $remote_host,
}
if (!defined(File[$mysql_grant_filepath])) {
file { $mysql_grant_filepath:
ensure => directory,
path => $mysql_grant_filepath,
owner => 'root',
group => 'root',
mode => '0700',
}
}
file { $mysql_grant_file:
ensure => present,
mode => '0600',
owner => 'root',
group => 'root',
path => "${mysql_grant_filepath}/${mysql_grant_file}",
content => template($mysql_grant_template),
}
$exec_command = $remote_host ? {
'' => $mysql::real_root_password ? {
'' => "mysql -uroot < ${mysql_grant_filepath}/${mysql_grant_file}",
default => "mysql --defaults-file=/root/.my.cnf -uroot < ${mysql_grant_filepath}/${mysql_grant_file}",
},
default => "mysql -h${remote_host} -u${remote_user} --password=${remote_password} < ${mysql_grant_filepath}/${mysql_grant_file}",
}
$exec_require = $remote_host ? {
'' => $mysql::real_root_password ? {
'' => Service['mysql'],
default => [ Service['mysql'], Class['mysql::password'] ],
},
default => undef,
}
exec { "mysqlgrant-${mysql_user}-${nice_mysql_host}-${dbname}":
command => $exec_command,
require => $exec_require,
subscribe => File[$mysql_grant_file],
path => [ '/usr/bin' , '/usr/sbin' ],
refreshonly => true;
}
if $mysql_db_init_query_file != '' and $mysql_create_db == true {
mysql::queryfile { "mysql_db_init_query_file-${nice_mysql_host}-${dbname}":
mysql_file => $mysql_db_init_query_file,
mysql_user => $remote_user,
mysql_password => $remote_password,
mysql_db => $dbname,
mysql_host => $manage_remote_host,
subscribe => Exec["mysqlgrant-${mysql_user}-${nice_mysql_host}-${dbname}"],
}
}
}
|