computer-playbook/roles/python-pip/tasks/main.yml

12 lines
248 B
YAML
Raw Normal View History

---
- name: python pip install
pacman:
name: python-pip
state: present
when: run_once_python_pip is not defined
- name: run the python_pip tasks once
set_fact:
run_once_python_pip: true
when: run_once_python_pip is not defined