mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 08:16:28 +00:00
fe858bfa36
- removed the packer binary - added a bench command to install virtualbox
17 lines
469 B
YAML
17 lines
469 B
YAML
---
|
|
|
|
- name: Add VirtualBox Repository
|
|
yum_repository:
|
|
name: Oracle Linux / RHEL / CentOS-$releasever / $basearch - VirtualBox
|
|
description: Official VirtualBox Yum Repo
|
|
baseurl: http://download.virtualbox.org/virtualbox/rpm/el/$releasever/$basearch
|
|
gpgkey: https://www.virtualbox.org/download/oracle_vbox.asc
|
|
gpgcheck: yes
|
|
|
|
- name: Install VirtualBox
|
|
yum: name={{ item }} enablerepo=mariadb state=present
|
|
with_items:
|
|
- VirtualBox-5.2
|
|
|
|
...
|