2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 12:39:01 +00:00
bench/playbooks/roles/virtualbox/tasks/main.yml
Ameya Shenoy fe858bfa36
Fixes for VM builds
- removed the packer binary
- added a bench command to install virtualbox
2018-03-04 01:04:17 +05:30

9 lines
156 B
YAML

---
- include_tasks: debian_family.yml
when: ansible_os_family == 'Debian'
- include_tasks: redhat_family.yml
when: ansible_os_family == "RedHat"
...