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,16 @@
---
- name: Enable remi repo for PHP 5.6.
set_fact: php_enablerepo="remi,remi-php56"
when: php_version == "5.6"
- name: Enable remi repo for PHP 7.0.
set_fact: php_enablerepo="remi,remi-php70"
when: php_version == "7.0"
- name: Enable remi repo for PHP 7.1.
set_fact: php_enablerepo="remi,remi-php71"
when: php_version == "7.1"
- name: Enable remi repo for PHP 7.2.
set_fact: php_enablerepo="remi,remi-php72"
when: php_version == "7.2"