Add all files needed to bring up VM and run agaric.com locally

This commit is contained in:
benjamin melançon 2018-08-20 10:45:20 -04:00
parent 52c8b60bac
commit 4d2bc0ee24
742 changed files with 24037 additions and 0 deletions

View file

@ -0,0 +1,26 @@
---
# Shims for Drupal VM backwards compatibility. To be removed by 2018.
- name: build_makefile shim
set_fact:
drupal_build_makefile: "{{ build_makefile }}"
when: build_makefile|default('')
- name: build_composer shim
set_fact:
drupal_build_composer: "{{ build_composer }}"
when: build_composer|default('')
- name: build_composer_project shim
set_fact:
drupal_build_composer_project: "{{ build_composer_project }}"
when: build_composer_project|default('')
- name: install_site shim
set_fact:
drupal_install_site: "{{ install_site }}"
when: install_site|default('')
- name: drupalvm_database shim
set_fact:
drupal_db_backend: "{{ drupalvm_database }}"
when: drupalvm_database|default('')