Sha256: b171dfa24fbf5c5e138e93ff74270c5302326a4b6589462b75260a09632f91b3

Contents?: true

Size: 707 Bytes

Versions: 7

Compression:

Stored size: 707 Bytes

Contents

#
class mysql::client (
  $bindings_enable = $mysql::params::bindings_enable,
  $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': }

}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
freighthop-0.3.3 modules/mysql/manifests/client.pp
freighthop-0.3.2 modules/mysql/manifests/client.pp
freighthop-0.3.1 modules/mysql/manifests/client.pp
freighthop-0.3.0 modules/mysql/manifests/client.pp
freighthop-0.2.1 modules/mysql/manifests/client.pp
freighthop-0.2.0 modules/mysql/manifests/client.pp
freighthop-0.1.0 modules/mysql/manifests/client.pp