2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 12:39:01 +00:00
bench/playbooks/roles/virtualbox/tasks/redhat_family.yml

18 lines
439 B
YAML
Raw Normal View History

---
2018-03-03 21:31:41 +00:00
- name: Install the 'Development tools' package group
yum:
name: "@Development tools"
state: present
2018-03-03 21:31:41 +00:00
- name: Install dependencies
yum: name={{ item }} state=present
with_items:
2018-03-03 21:31:41 +00:00
- kernel-devel
- deltarpm
2018-03-03 21:31:41 +00:00
- copy: src=virtualbox_centos.repo dest=/etc/yum.repos.d/virtualbox.repo owner=root group=root mode=0644 force=no
- name: Install VirtualBox
command: yum install -y VirtualBox-{{ virtualbox_version }}
...