mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-06-25 03:38:59 +02:00
12 lines
254 B
YAML
12 lines
254 B
YAML
---
|
|
- name: python-yaml install
|
|
pacman:
|
|
name: python-yaml
|
|
state: present
|
|
when: run_once_python_yaml is not defined
|
|
|
|
- name: run the python_yaml tasks once
|
|
set_fact:
|
|
run_once_python_yaml: true
|
|
when: run_once_python_yaml is not defined
|