feat(tasks): install python3 on rhel

This commit is contained in:
Wallun 2021-11-28 13:24:16 +01:00
parent 59c78e6fa9
commit d636fa002b
Signed by: wallun
GPG Key ID: 71D17013D836735B
1 changed files with 15 additions and 0 deletions

View File

@ -13,3 +13,18 @@
tags:
- raw
- install
- name: raw | Install python3 on RHEL
raw: |
test -e /usr/bin/dnf &&\
dnf install -yq python3 ||\
echo "dnf not available on this host" &&\
exit 0;
become: true
register: dnf
changed_when: |
('is already installed' not in dnf.stdout) and
('dnf not available on this host' not in dnf.stdout)
tags:
- raw
- install