7de2316e15
Add install_options parameter to mysql::bindings, mysql::client, and mysql::server. The default is undef.
9 lines
231 B
Puppet
9 lines
231 B
Puppet
class mysql::client::install {
|
|
|
|
package { 'mysql_client':
|
|
ensure => $mysql::client::package_ensure,
|
|
install_options => $mysql::client::install_options,
|
|
name => $mysql::client::package_name,
|
|
}
|
|
|
|
}
|