From 5609d2e3aee35578e914bcbfac92a46c759c0a31 Mon Sep 17 00:00:00 2001 From: James Slagle Date: Thu, 14 Mar 2019 15:13:38 -0400 Subject: [PATCH] Include python*-tripleoclient from delorean.repo Now that tripleoclient is packaged as python2-tripleoclient for python v2, we need to make sure we are including the latest version by using a wildcard in the package name. Otherwise, the version of python2-tripleoclient that ends up getting installed could be too old to work with other versions of tripleo packages from latest delorean. Change-Id: Ie3138801eb2e9f1c07afacbbc48d8fb3a937bcac Closes-Bug: #1820111 --- tripleo_repos/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tripleo_repos/main.py b/tripleo_repos/main.py index f773e9b..c5c9734 100755 --- a/tripleo_repos/main.py +++ b/tripleo_repos/main.py @@ -29,7 +29,7 @@ PRIORITY_RE = re.compile('priority=\\d+') # Packages to be included from delorean-current when using current-tripleo INCLUDE_PKGS = ('includepkgs=instack,instack-undercloud,' 'os-apply-config,os-collect-config,os-net-config,' - 'os-refresh-config,python-tripleoclient,' + 'os-refresh-config,python*-tripleoclient,' 'openstack-tripleo-*,openstack-puppet-modules,' 'puppet-*,python*-tripleo-common,python*-paunch*') DEFAULT_OUTPUT_PATH = '/etc/yum.repos.d'