module-puppetlabs-mysql/manifests/client/install.pp
Ashley Penney 1719424b23 Fix mysql::client.
This was still relying on globals.  Allow you to pass params into
mysql::client properly to set the package.
2013-09-26 09:30:44 -04:00

8 lines
157 B
Puppet

class mysql::client::install {
package { 'mysql_client':
ensure => $mysql::client::package_ensure,
name => $mysql::client::package_name,
}
}