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

View file

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