ansible-role-dojo-exporter/tasks/install.yml

11 lines
243 B
YAML
Raw Normal View History

---
- name: Ensure pipx is installed
ansible.builtin.package:
name: pipx
state: present
become: yes
- name: Install dojo_exporter using pipx
ansible.builtin.command:
cmd: pipx install dojo-exporter
register: poetry_install