mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
8 lines
191 B
YAML
8 lines
191 B
YAML
- name: install git
|
|
pacman: name=git state=present
|
|
when: run_once_git is not defined
|
|
|
|
- name: run the git tasks once
|
|
set_fact:
|
|
run_once_git: true
|
|
when: run_once_git is not defined |