aboutsummaryrefslogtreecommitdiffstats
path: root/playbooks/extra/prerequisites.yml
blob: eddb418f73d78965d0524dfc998ba02c0505a18e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

# all hosts basic ~~ playbooks/extra/prerequisites.yml
# install python with raw connection

---

- hosts: all
  gather_facts: false

  tasks:

    - name: bruteforce python installation with all packages possiblity
      raw: |
        pkg_add python3
        pkg install python3
        apk add python
      ignore_errors: true
      failed_when: false
      poll: 0
remember that computers suck.