2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-24 13:09:01 +00:00
bench/playbooks/roles/virtualbox/tasks/debian_family.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

26 lines
995 B
YAML

---
- name: Add VirtualBox to sources.list
apt_repository:
repo: deb https://download.virtualbox.org/virtualbox/debian {{ ansible_distribution_release }}contrib
state: present
- name: Add apt signing key for VirtualBox for Debian >= 8 and Ubuntu >= 16
apt_key:
url: https://www.virtualbox.org/download/oracle_vbox_2016.asc
state: present
when: (ansible_distribution == "Debian" and ansible_distribution_major_version >= "8") or (ansible_distribution == "Ubuntu" and ansible_distribution_major_version >= "16")
- name: Add apt signing key for VirtualBox for Debian < 8 and Ubuntu < 16
apt_key:
url: https://www.virtualbox.org/download/oracle_vbox.asc
state: present
when: (ansible_distribution == "Debian" and ansible_distribution_major_version >= "8") or (ansible_distribution == "Ubuntu" and ansible_distribution_major_version >= "16")
- name: Install VirtualBox
apt: pkg={{ item }} update_cache=yes state=present
with_items:
- virtualbox-5.2
...