install python3 for debian/ubuntu

main
Ricard Illa 2022-09-04 16:52:07 +02:00
parent ad89f1ae48
commit 202e8845a1
No known key found for this signature in database
GPG Key ID: F69A672B72E54902
1 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,9 @@
- name: install python3
apk:
name: python3
when: ansible_distribution == "Alpine"
- name: install python3
apt:
name: python3
when: ansible_distribution in ["Debian", "Ubuntu"]