3f9297e10e
This removes all the internal class parameters and shrinks these classes to be more straightforward, relying on the values set in bindings.pp.
14 lines
411 B
Puppet
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,
|
|
}
|
|
|
|
}
|