blob: ac4d58d4a842b37728e1324d9b6acecb74b66d91 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
- hosts: all
gather_facts: false
tasks:
- name: bruteforce python installation with all packages possiblity
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
|