ansible-roles/etc-git/tasks/main.yml
David Prevot dbef71d791
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good
Drop trailing whitespaces
2023-01-06 09:54:51 +01:00

21 lines
356 B
YAML

---
- name: Git is installed (Debian)
apt:
name: git
state: present
tags:
- etc-git
when:
- ansible_distribution == "Debian"
- name: Install and configure utilities
include: utils.yml
tags:
- etc-git
- name: Configure repositories
include: repositories.yml
tags:
- etc-git
when: etc_git_config_repositories | bool