2011-06-01 05:47:19 +02:00
|
|
|
# Class: mysql
|
|
|
|
#
|
|
|
|
# this module installs mysql client software.
|
|
|
|
#
|
|
|
|
# Parameters:
|
2011-06-17 00:34:04 +02:00
|
|
|
# [*client_package_name*] - The name of the mysql client package.
|
2011-06-01 05:47:19 +02:00
|
|
|
# Actions:
|
|
|
|
#
|
|
|
|
# Requires:
|
|
|
|
#
|
|
|
|
# Sample Usage:
|
|
|
|
#
|
2011-06-17 00:34:04 +02:00
|
|
|
class mysql(
|
|
|
|
$client_package_name = $mysql::params::client_package_name
|
|
|
|
) inherits mysql::params {
|
|
|
|
package {"mysql-client":
|
|
|
|
name => $client_package_name,
|
|
|
|
ensure => installed,
|
|
|
|
}
|
2011-05-25 08:22:43 +02:00
|
|
|
}
|