6b98633cc8
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.
20 lines
390 B
Puppet
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,
|
|
}
|
|
}
|