9 lines
202 B
YAML
9 lines
202 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Install pipx pkg
|
|
become: "{{ archive_become }}"
|
|
community.general.pipx:
|
|
executable: "{{ pipx_exec }}"
|
|
name: "{{ pipx_pkg }}"
|
|
state: latest
|