You've already forked ansible-role-git
Initial Commit
This commit is contained in:
15
tasks/main.yml
Normal file
15
tasks/main.yml
Normal 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 }}"
|
Reference in New Issue
Block a user