7de2316e15
Add install_options parameter to mysql::bindings, mysql::client, and mysql::server. The default is undef.
28 lines
735 B
Puppet
28 lines
735 B
Puppet
#
|
|
class mysql::client (
|
|
$bindings_enable = $mysql::params::bindings_enable,
|
|
$install_options = undef,
|
|
$package_ensure = $mysql::params::client_package_ensure,
|
|
$package_name = $mysql::params::client_package_name,
|
|
) 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,
|
|
}
|
|
}
|
|
|
|
|
|
# Anchor pattern workaround to avoid resources of mysql::client::install to
|
|
# "float off" outside mysql::client
|
|
anchor { 'mysql::client::start': } ->
|
|
Class['mysql::client::install'] ->
|
|
anchor { 'mysql::client::end': }
|
|
|
|
}
|