Files
ansible_role_package/tasks/pipx.yml
2025-02-22 16:24:44 -07:00

12 lines
276 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: Install pipx pkg
become: "{{ ext_become }}"
environment:
PIPX_HOME: "{{ path.pipx }}"
PIPX_BIN_DIR: "{{ path.bin }}"
community.general.pipx:
executable: "{{ pipx_exec }}"
name: "{{ pkg }}"
state: latest