module-puppetlabs-mysql/manifests/php.pp
Ashley Penney 3f9297e10e Rework the mysql::bindings to be less complex.
This removes all the internal class parameters and shrinks these classes
to be more straightforward, relying on the values set in bindings.pp.
2013-09-13 13:14:39 -04:00

14 lines
411 B
Puppet

class mysql::php(
$package_ensure = $mysql::params::php_package_name,
$package_name = $mysql::params::php_package_name,
) inherits mysql::params {
notify { "mysql::php has been renamed to mysql::bindings::php and this
backwards compatibility shim will be removed on 01/01/2014.": }
class { 'mysql::bindings::php':
package_ensure => $package_ensure,
package_name => $package_name,
}
}