Remove mysql::python class inclusion

When the dependent patch is merged, Jeepyb will depend on PyMySql and
install it from pip as part of its requirements. Therefore it will no
longer be necessary to include the mysql::python class, which installs
the python-mysqldb package from Ubuntu packages. Removing this class
inclusion will make transitioning to an up-to-date version of the mysql
puppet module easier, as the current version moves the mysql::python
class to mysql::bindings::python.

Change-Id: I7dec1c6f588cb3e1d0eb3cb2eb6398df45ebdc22
Depends-On: I3afeaebeb8416388d5866fc3994357935079c97d
This commit is contained in:
Colleen Murphy 2015-10-14 14:10:21 -07:00
parent 63d834bf01
commit e14978a3c9
1 changed files with 0 additions and 3 deletions

View File

@ -4,8 +4,6 @@ class jeepyb (
$git_source_repo = 'https://git.openstack.org/openstack-infra/jeepyb',
$git_revision = 'master',
) {
include ::mysql::python
if ! defined(Package['python-paramiko']) {
package { 'python-paramiko':
ensure => present,
@ -49,7 +47,6 @@ class jeepyb (
command => 'pip install /opt/jeepyb',
path => '/usr/local/bin:/usr/bin:/bin/',
refreshonly => true,
require => Class['mysql::python'],
subscribe => Vcsrepo['/opt/jeepyb'],
logoutput => true,
}