ansible-ffibk/roles/git-repos/tasks/main.yml
2017-09-18 13:22:55 +02:00

23 lines
427 B
YAML

---
- name: install git packages
apt:
name: "{{ item }}"
state: present
with_items:
- git
- name: ensure git directory is present
file:
path: /home/admin/clones
state: directory
mode: 0755
owner: admin
group: admin
- name: clone git repositories
git:
repo: "{{ item.value.repo_url }}"
dest: "/home/admin/clones/{{ item.key }}"
with_dict: "{{ common_repos }}"
become: false