module-puppetlabs-mysql/manifests/client/install.pp
Ashley Penney 46fe1ea512 Remove mysql::globals.
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.
2013-09-24 18:04:29 -04:00

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,
}
}