18 lines
397 B
YAML
18 lines
397 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add git
|
|
when:
|
|
- git_configured is undefined
|
|
block:
|
|
- name: Load git config
|
|
ansible.builtin.include_tasks:
|
|
file: config/git.yml
|
|
|
|
- name: Append to pkgs
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + git.pkgs }}"
|
|
|
|
- name: Set git_configured
|
|
ansible.builtin.set_fact:
|
|
git_configured: true
|