Initial commit

This commit is contained in:
Alex 2020-05-21 20:06:52 +02:00
commit 40f81e78cb
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
2 changed files with 10 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
vault/

9
tasks/main.yml Normal file
View File

@ -0,0 +1,9 @@
- name: Clone repositories
loop: "{{ git_clone }}"
git:
dest: "{{ item.dest }}"
repo: "{{ item.repo }}"
version: "{{ item.branch|default('master') }}"
force: "{% if item.force|default() %}yes{% else %}no{% endif %}"
tags:
- git-clone