mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 08:30:46 +02:00
19 lines
506 B
YAML
19 lines
506 B
YAML
- name: Load former meta dependencies once
|
|
block:
|
|
- name: Include moved dependency 'dev-gcc'
|
|
include_role:
|
|
name: dev-gcc
|
|
- set_fact:
|
|
run_once_dev_python_pip: true
|
|
when: run_once_dev_python_pip is not defined
|
|
- name: python pip install
|
|
community.general.pacman:
|
|
name: python-pip
|
|
state: present
|
|
when: run_once_dev_python_pip is not defined
|
|
|
|
- name: run the python_pip tasks once
|
|
set_fact:
|
|
run_once_dev_python_pip: true
|
|
when: run_once_dev_python_pip is not defined
|