Initial Commit

This commit is contained in:
2022-04-11 13:04:14 +02:00
commit bb24545287
16 changed files with 430 additions and 0 deletions

15
tasks/main.yml Normal file
View File

@ -0,0 +1,15 @@
---
- name: Include special distribution-dependent variables
include_vars: "{{ ansible_os_family }}.yml"
- name: Install git and dependencies
package:
name: "{{ item }}"
state: present
with_items: "{{ git_package_names }}"
- name: Configure git
include_tasks: git_user.yml
with_dict:
- "{{ git_users }}"