46fe1ea512
This turned out to be a fairly bad idea. It begun as a way to try and mirror what happens in the postgresql module for consistency but instead made things complex. I've changed it to have the override_options in mysql::server which leads much more naturally out of the design and shape of MySQL.
11 lines
245 B
Puppet
11 lines
245 B
Puppet
class mysql::client::install(
|
|
$package_name = $mysql::params::client_package_name,
|
|
$package_ensure = $mysql::params::client_package_ensure
|
|
) {
|
|
|
|
package { 'mysql_client':
|
|
ensure => $package_ensure,
|
|
name => $package_name,
|
|
}
|
|
|
|
}
|