fix(task): remove '-q' flag in dnf

As this flag makes dnf quiet, it prevents parsing dnf.stdout
This commit is contained in:
Wallun 2021-12-22 16:09:15 +01:00
parent 70724d3883
commit 8c0eb260c4
Signed by: wallun
GPG Key ID: 71D17013D836735B
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
- name: raw | Install python3 on RHEL
raw: |
test -e /usr/bin/dnf &&\
dnf install -yq python3 ||\
dnf install -y python3 ||\
echo "dnf not available on this host" &&\
exit 0;
become: true