module-puppetlabs-mysql/manifests/init.pp
Gary Larizza 6b98633cc8 Add client package variable
The mysql client package is different on CentOS. This commit adds
a parameter for the mysql client package and defaults to a variable
in the mysql::params class.
2011-06-16 15:34:04 -07:00

20 lines
390 B
Puppet

# Class: mysql
#
# this module installs mysql client software.
#
# Parameters:
# [*client_package_name*] - The name of the mysql client package.
# Actions:
#
# Requires:
#
# Sample Usage:
#
class mysql(
$client_package_name = $mysql::params::client_package_name
) inherits mysql::params {
package {"mysql-client":
name => $client_package_name,
ensure => installed,
}
}