Safely remove python-requests on workers

* modules/openstack_project/manifests/thick_slave.pp: Effectively
reimplement package removal in Puppet for Red Hat based platforms to
work around https://bugzilla.redhat.com/show_bug.cgi?id=973375 when
python-requests is installed. This was causing image updates to fail
on CentOS machines where the provider preinstalled the package as a
dependency of cloud-init, resulting in an error message "Rpmdb
checksum is invalid: pkg checksums: python-requests...".

Change-Id: I5933f6cbbe8f0258bb443b7ce9c511c7c1072db2
This commit is contained in:
Jeremy Stanley 2014-08-15 22:23:00 +00:00
parent 44c2fa9bdb
commit 77e34c7e27

View File

@ -61,10 +61,18 @@ class openstack_project::thick_slave(
ensure => latest,
provider => pip,
}
# transitional for upgrading to the pip version
package { $::openstack_project::jenkins_params::python_requests_package:
ensure => absent,
before => Package['requests'],
if ($::osfamily == 'RedHat') {
# Work around https://bugzilla.redhat.com/show_bug.cgi?id=973375
exec { 'remove_requests':
command => "/usr/bin/yum remove -y ${::openstack_project::jenkins_params::python_requests_package}",
onlyif => "/bin/rpm -qa|/bin/grep -q ${::openstack_project::jenkins_params::python_requests_package}",
before => Package['requests'],
}
} else {
package { $::openstack_project::jenkins_params::python_requests_package:
ensure => absent,
before => Package['requests'],
}
}
if ($::lsbdistcodename == 'trusty') {