From f59fde1485fcff9639c294524fee8455e401a568 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Thu, 13 Sep 2018 14:37:57 +0200 Subject: [PATCH] Fix python-chardet to latest version Since we cant install this from repo because it's a SRPM which has to be pulled in from another openstack package we do this for now. Change-Id: I68b8c09504500bafca259a58e62b0779c0bd6253 --- manifests/repos.pp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/manifests/repos.pp b/manifests/repos.pp index 405d01d48..8425e10f6 100644 --- a/manifests/repos.pp +++ b/manifests/repos.pp @@ -113,9 +113,10 @@ class openstack_integration::repos { # beaker testing. if $::osfamily == 'RedHat' { package { 'python-chardet': - ensure => 'latest', + ensure => 'installed', + provider => 'rpm', + source => 'http://mirror.centos.org/centos/7/cloud/x86_64/openstack-rocky/python2-chardet-3.0.4-7.el7.noarch.rpm', } - Yumrepo<||> -> Package<| title == 'python-chardet' |> } }