2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-24 15:38:25 +00:00
bench/playbooks/develop/install.yml

14 lines
341 B
YAML
Raw Normal View History

2016-03-15 12:24:17 +05:30
---
- hosts: localhost
vars_prompt:
- name: mysql_root_password
prompt: "MySQL Root Password"
when: ansible_distribution == 'Ubuntu'
2016-03-15 12:30:55 +05:30
- include: macosx.yml
2016-03-16 14:41:55 +05:30
when: ansible_distribution == 'MacOSX'
- include: ubuntu.yml
when: ansible_distribution == 'Ubuntu'
2016-03-18 15:40:38 +05:30
- include: centos.yml
when: ansible_distribution == 'CentOS'