mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 00:06:36 +00:00
14 lines
341 B
YAML
14 lines
341 B
YAML
---
|
|
- hosts: localhost
|
|
vars_prompt:
|
|
- name: mysql_root_password
|
|
prompt: "MySQL Root Password"
|
|
when: ansible_distribution == 'Ubuntu'
|
|
|
|
- include: macosx.yml
|
|
when: ansible_distribution == 'MacOSX'
|
|
- include: ubuntu.yml
|
|
when: ansible_distribution == 'Ubuntu'
|
|
- include: centos.yml
|
|
when: ansible_distribution == 'CentOS'
|