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,19 @@
---
- name: Install required dependencies.
yum: "name={{ item }} state=installed"
with_items:
- curl
- python-pycurl
- unzip
- make
- gcc
- name: Enable remi repo for MySQL.
set_fact: mysql_enablerepo="remi"
when: mysql_enablerepo is not defined or mysql_enablerepo == ""
- name: Define php_xhprof_html_dir.
set_fact:
php_xhprof_html_dir: "/usr/share/pear/xhprof_html"
when: php_xhprof_html_dir is not defined
tags: ['webserver']