Merge pull request #280 from apenney/fix-php

Removing the bindings compat stuff.
This commit is contained in:
Ashley Penney 2013-09-25 10:07:27 -07:00
commit e0c4434815
5 changed files with 0 additions and 74 deletions

View file

@ -1,14 +0,0 @@
class mysql::java(
$package_ensure = $mysql::params::java_package_ensure,
$package_name = $mysql::params::java_package_name,
) inherits mysql::params {
notify { "mysql::java has been renamed to mysql::bindings::java and this
backwards compatibility shim will be removed on 01/01/2014.": }
class { 'mysql::bindings::java':
package_ensure => $package_ensure,
package_name => $package_name,
}
}

View file

@ -1,16 +0,0 @@
class mysql::perl(
$package_ensure = $mysql::params::perl_package_ensure,
$package_name = $mysql::params::perl_package_name,
$package_provider = $mysql::params::perl_package_provider,
) inherits mysql::params {
notify { "mysql::perl has been renamed to mysql::bindings::perl and this
backwards compatibility shim will be removed on 01/01/2014.": }
class { 'mysql::bindings::perl':
package_ensure => $package_ensure,
package_name => $package_name,
package_provider => $package_provider,
}
}

View file

@ -1,14 +0,0 @@
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,
}
}

View file

@ -1,14 +0,0 @@
class mysql::python(
$package_ensure = $mysql::params::python_package_ensure,
$package_name = $mysql::params::python_package_name,
) inherits mysql::params {
notify { "mysql::python has been renamed to mysql::bindings::python and this
backwards compatibility shim will be removed on 01/01/2014.": }
class { 'mysql::bindings::python':
package_ensure => $package_ensure,
package_name => $package_name,
}
}

View file

@ -1,16 +0,0 @@
class mysql::ruby(
$package_ensure = $mysql::params::ruby_package_ensure,
$package_name = $mysql::params::ruby_package_name,
$package_provider = $mysql::params::ruby_package_provider,
) inherits mysql::params {
notify { "mysql::ruby has been renamed to mysql::bindings::ruby and this
backwards compatibility shim will be removed on 01/01/2014.": }
class { 'mysql::bindings::ruby':
package_ensure => $package_ensure,
package_name => $package_name,
package_provider => $package_provider,
}
}