Add VirtualBox

This commit is contained in:
Gary Talent 2017-06-10 18:21:24 -05:00
parent d6787a31b0
commit 34f3a0f960

View File

@ -66,6 +66,21 @@
repo: "deb [arch=amd64] https://download.docker.com/linux/debian stretch stable" repo: "deb [arch=amd64] https://download.docker.com/linux/debian stretch stable"
state: present state: present
- name: VirtualBox Repository Key 1
apt_key:
url: https://www.virtualbox.org/download/oracle_vbox_2016.asc
state: present
- name: VirtualBox Repository Key 2
apt_key:
url: https://www.virtualbox.org/download/oracle_vbox.asc
state: present
- name: VirtualBox Repository
apt_repository:
repo: "deb http://download.virtualbox.org/virtualbox/debian stretch contrib"
state: present
# update system # update system
- name: Update | Update System - name: Update | Update System
apt: apt:
@ -269,6 +284,11 @@
name: tree name: tree
state: latest state: latest
- name: Install virtualbox-5.1
apt:
name: virtualbox-5.1
state: latest
- name: Install vim-gtk3 - name: Install vim-gtk3
apt: apt:
name: vim-gtk3 name: vim-gtk3