Use correct novajoin package for centos8 featureset 39 freeipa
As see in v7 of test at [1] the installation fails as there is no python-novajoin for centos8 (python3-novajoin). Tracked by tripleo-ci squad in [2]. [1] https://review.rdoproject.org/r/#/c/25796/7 [2] https://hackmd.io/7MBqFHurTA2e5H8kYRwgag?both#Reviews-still-in-play-to-addmove-jobs Change-Id: I9121ab3777101ae67b619b89c9e86171c9d5a77c
This commit is contained in:
parent
69f0b4a616
commit
e5a4207ea3
@ -7,7 +7,12 @@
|
||||
|
||||
## * Install python-novajoin
|
||||
## ::
|
||||
{% if ansible_python['version']['major'] is version("3", "==") -%}
|
||||
NOVAJOIN_PACKAGE=python3-novajoin
|
||||
{% else %}
|
||||
NOVAJOIN_PACKAGE=python-novajoin
|
||||
{% endif %}
|
||||
|
||||
sudo {{ ansible_pkg_mgr }} install -y python-novajoin
|
||||
sudo {{ ansible_pkg_mgr }} install -y $NOVAJOIN_PACKAGE
|
||||
|
||||
### --stop_docs
|
||||
|
Loading…
x
Reference in New Issue
Block a user