blob: 598f8451e936af6f5dac0b8dd7faba7fbaa08a3e (
plain) (
tree)
|
|
# 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: "{{ item }}"
ignore_errors: true
loop:
- pkg_add python3
- pkg install python3
- apk add python
|