From cb5996113f435dbd674e770944f7545411eaa6e3 Mon Sep 17 00:00:00 2001 From: Wallun Date: Wed, 27 Apr 2022 10:37:13 +0200 Subject: [PATCH] chore: use module FQRN --- tasks/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/main.yaml b/tasks/main.yaml index 2364eeb..ca6baa8 100644 --- a/tasks/main.yaml +++ b/tasks/main.yaml @@ -1,6 +1,6 @@ --- - name: raw | Install python3 on archlinux - raw: | + ansible.builtin.raw: | test -e /bin/pacman &&\ pacman -S python3 --asexplicit --noconfirm ||\ echo "pacman not available on this host" &&\ @@ -15,7 +15,7 @@ - install - name: raw | Install python3 on RHEL - raw: | + ansible.builtin.raw: | test -e /usr/bin/dnf &&\ dnf install -y python3 ||\ echo "dnf not available on this host" &&\