b1f90fd1d2
This is a major change to the module and would be released as a new version. * Add self.instances to database and database_user for puppet resource. * Update database provider to use flush method. * Update module to conform to puppet-lint recommendations. * Cleanup some unecessary logic in mysql::db define type. * Move mysql_restart to config class. * Use class to class dependency instead of resource dependency. * Change appropriate rspec-puppet tests. * Add fixtures directory to simplify testing. * Update raketask and spec_helper to reflect fixture changes. * Update mysql_password function to support validation. * Move client installation to a separate class. * Update documentation and readme.
28 lines
596 B
Puppet
28 lines
596 B
Puppet
# Class: mysql::ruby
|
|
#
|
|
# installs the ruby bindings for mysql
|
|
#
|
|
# Parameters:
|
|
# [*ensure*] - ensure state for package.
|
|
# can be specified as version.
|
|
# [*package_name*] - name of package
|
|
#
|
|
# Actions:
|
|
#
|
|
# Requires:
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
class mysql::ruby (
|
|
$package_name = $mysql::params::ruby_package_name,
|
|
$package_provider = $mysql::params::ruby_package_provider,
|
|
$package_ensure = 'present'
|
|
) inherits mysql::params {
|
|
|
|
package{ 'ruby_mysql':
|
|
name => $package_name,
|
|
ensure => $package_ensure,
|
|
provider => $package_provider,
|
|
}
|
|
|
|
}
|