mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add virtualenv symlink for RHEL 8.
Also enable template_jinja2_latest now that it passes.
This commit is contained in:
parent
27fd8e4dc6
commit
6cd8742fa7
2 changed files with 3 additions and 1 deletions
|
@ -1,3 +1,2 @@
|
|||
needs/root
|
||||
shippable/posix/group2
|
||||
skip/rhel8.0
|
||||
|
|
|
@ -53,6 +53,9 @@ elif [ "${platform}" = "rhel" ]; then
|
|||
if [ ! -f /usr/bin/pip ]; then
|
||||
ln -s /usr/bin/pip3 /usr/bin/pip
|
||||
fi
|
||||
if [ ! -f /usr/bin/virtualenv ]; then
|
||||
ln -s /usr/bin/virtualenv-3 /usr/bin/virtualenv
|
||||
fi
|
||||
else
|
||||
while true; do
|
||||
yum install -y \
|
||||
|
|
Loading…
Reference in a new issue