7c7195ba33
The current MySQL module is hard to modify, test, and drop in replacement components to. This work starts out by refactoring the bindings support in MySQL to a completely seperate bindings class in order to reduce the amount of parameters in the main class for a feature that is infrequently used. In addition to this start the movement of client configuration and packages to the mysql::client::* namespace.
11 lines
229 B
Puppet
11 lines
229 B
Puppet
class mysql::client::install(
|
|
$package_name = $mysql::client_package_name,
|
|
$package_ensure = $mysql::client_package_ensure
|
|
) {
|
|
|
|
package { 'mysql_client':
|
|
ensure => $package_ensure,
|
|
name => $package_name,
|
|
}
|
|
|
|
}
|