diff options
Diffstat (limited to 'site.prerequisites.yml')
-rw-r--r-- | site.prerequisites.yml | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/site.prerequisites.yml b/site.prerequisites.yml deleted file mode 100644 index 5495522..0000000 --- a/site.prerequisites.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- - -- hosts: all - gather_facts: false - tasks: - - name: bruteforce python installation with all packages possiblity # noqa: no-changed-when - ansible.builtin.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 |