diff options
-rw-r--r-- | playbooks/extra/prerequisites.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/playbooks/extra/prerequisites.yml b/playbooks/extra/prerequisites.yml new file mode 100644 index 0000000..598f845 --- /dev/null +++ b/playbooks/extra/prerequisites.yml @@ -0,0 +1,18 @@ + +# 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 |