From d759489747495f0c71094fa12d587344bf43c023 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Thu, 30 Dec 2021 09:38:20 +0000 Subject: playbooks: Move playbook files to root directory --- site.prerequisites.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 site.prerequisites.yml (limited to 'site.prerequisites.yml') diff --git a/site.prerequisites.yml b/site.prerequisites.yml new file mode 100644 index 0000000..3178164 --- /dev/null +++ b/site.prerequisites.yml @@ -0,0 +1,12 @@ +- hosts: all + gather_facts: false + tasks: + - name: bruteforce python installation with all packages possiblity # noqa: no-changed-when + raw: | + ! pkg_add python3 && + ! pkg install python3 && + apk add python + register: result + ignore_errors: true + failed_when: result.rc not in [0, 1] + poll: 0 -- cgit v1.2.3