11 lines
312 B
YAML
11 lines
312 B
YAML
---
|
|
- ansible.builtin.include_vars:
|
|
file: python3.yml
|
|
name: _python3
|
|
- ansible.builtin.set_fact:
|
|
pkgconfig_python3: "{{ _python3 | ansible.builtin.combine(pkgconfig.python3) }}"
|
|
|
|
- name: append to pkgs
|
|
ansible.builtin.set_fact:
|
|
syspkgs: "{{ syspkgs + pkgconfig_python3.pkgs[ansible_system] }}"
|