2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-24 13:09:01 +00:00
bench/playbooks/roles/common/tasks/main.yml

9 lines
236 B
YAML
Raw Normal View History

2018-02-05 09:37:14 +00:00
---
2019-06-21 03:10:13 +00:00
# Install's prerequisites, like fonts, image libraries, vim, screen, python3-dev
2018-02-05 09:37:14 +00:00
2018-02-28 22:21:48 +00:00
- include_tasks: debian_family.yml
2018-02-05 09:37:14 +00:00
when: ansible_os_family == 'Debian'
2018-02-28 22:21:48 +00:00
- include_tasks: redhat_family.yml
when: ansible_os_family == "RedHat"
2018-02-05 09:37:14 +00:00
...