You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
435 B
24 lines
435 B
# Class: mysql::java
|
|
#
|
|
# This class installs the mysql-java-connector.
|
|
#
|
|
# Parameters:
|
|
# [*java_package_name*] - The name of the mysql java package.
|
|
#
|
|
# Actions:
|
|
#
|
|
# Requires:
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
class mysql::java (
|
|
$package_name = $mysql::params::java_package_name,
|
|
$package_ensure = 'present'
|
|
) inherits mysql::params {
|
|
|
|
package { 'mysql-connector-java':
|
|
ensure => $package_ensure,
|
|
name => $package_name,
|
|
}
|
|
|
|
}
|
|
|