Skip to content
Snippets Groups Projects
Commit 16096488 authored by jurgenhaas's avatar jurgenhaas
Browse files

Allow multiple extra repositories

parent e969b450
No related branches found
No related tags found
No related merge requests found
......@@ -22,15 +22,15 @@
version: '{{ drupal.src.git.branch|default(omit) }}'
become: false
- name: "Clone Git Config Repository"
- name: "Clone Git Extra Repositories"
git:
accept_hostkey: yes
repo: '{{ drupal.src.git.configrepository }}'
dest: '{{ webRoot }}/config'
repo: '{{ drupal.src.git.extrarepos[item] }}'
dest: '{{ webRoot }}/{{ item }}'
force: yes
version: '{{ drupal.src.git.branch|default(omit) }}'
become: false
when: drupal.src.git.configrepository is defined
with_items: '{{ drupal.src.git.extrarepos|default([]) }}'
- name: "Create .env file"
template:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment