Add all files needed to bring up VM and run agaric.com locally
This commit is contained in:
parent
52c8b60bac
commit
4d2bc0ee24
742 changed files with 24037 additions and 0 deletions
19
box/provisioning/tasks/init-RedHat.yml
Normal file
19
box/provisioning/tasks/init-RedHat.yml
Normal 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']
|
Loading…
Add table
Add a link
Reference in a new issue