mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
12 lines
248 B
YAML
12 lines
248 B
YAML
---
|
|
- 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
|