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,34 @@
---
- hosts: all
vars_files:
- test-vars.yml
vars:
# Deploy from the Drupal VM Prod example project.
drupal_deploy: true
drupal_deploy_repo: "https://github.com/geerlingguy/drupalvm-live.git"
drupal_deploy_dir: /var/www/drupal
drupal_domain: "prod.drupalvm.com"
# Disable Composer-based codebase setup.
drupal_build_composer_project: false
drupal_build_composer: false
drupal_composer_dependencies: []
pre_tasks:
- include: test-setup.yml
roles:
- name: geerlingguy.repo-remi
when: ansible_os_family == "RedHat"
- role: geerlingguy.repo-dotdeb
when: ansible_distribution == 'Debian'
- geerlingguy.apache
- geerlingguy.mysql
- geerlingguy.php
- geerlingguy.php-mysql
- geerlingguy.git
- geerlingguy.composer
- geerlingguy.drush
- role_under_test