21 lines
700 B
YAML
21 lines
700 B
YAML
---
|
|
- name: ansible-python3-pkgs | Install some python3 packages on deb distributsions
|
|
when: ansible_distribution_file_variety == "Debian"
|
|
tags: [python, python3]
|
|
|
|
block:
|
|
- name: ansible-python3-pkgs | Install some python3 packages on Ubuntu/Debian
|
|
ansible.builtin.apt:
|
|
pkg: "{{ ansible_python3_debs }}"
|
|
state: present
|
|
cache_valid_time: 1800
|
|
|
|
- name: ansible-python3-pkgs | Install some python3 packages on EL
|
|
when: ansible_distribution_file_variety == "RedHat"
|
|
tags: [python, python3]
|
|
block:
|
|
- name: ansible-python3-pkgs | Install some python3 packages on EL
|
|
ansible.builtin.yum:
|
|
pkg: "{{ ansible_python3_el }}"
|
|
state: present
|