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.
18 lines
331 B
Puppet
18 lines
331 B
Puppet
#
|
|
class mysql::client (
|
|
$bindings_enable = false,
|
|
) inherits mysql::params {
|
|
|
|
include '::mysql::client::install'
|
|
|
|
if $bindings_enable {
|
|
class { 'mysql::bindings':
|
|
java_enable => true,
|
|
perl_enable => true,
|
|
php_enable => true,
|
|
python_enable => true,
|
|
ruby_enable => true,
|
|
}
|
|
}
|
|
|
|
}
|