mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 00:06:36 +00:00
14 lines
278 B
YAML
14 lines
278 B
YAML
---
|
|
- hosts: localhost
|
|
|
|
- include: macosx.yml
|
|
when: ansible_distribution == 'MacOSX'
|
|
|
|
- include: ubuntu.yml
|
|
when: ansible_distribution == 'Ubuntu'
|
|
|
|
- include: centos.yml
|
|
when: ansible_distribution == 'CentOS'
|
|
|
|
- include: debian.yml
|
|
when: ansible_distribution == 'Debian' |