From 34f3a0f96053f0cef094b00276f50f3a374b76db Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 10 Jun 2017 18:21:24 -0500 Subject: [PATCH] Add VirtualBox --- debian.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/debian.yml b/debian.yml index bec2de7..79ea39b 100644 --- a/debian.yml +++ b/debian.yml @@ -66,6 +66,21 @@ repo: "deb [arch=amd64] https://download.docker.com/linux/debian stretch stable" 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 - name: Update | Update System apt: @@ -269,6 +284,11 @@ name: tree state: latest + - name: Install virtualbox-5.1 + apt: + name: virtualbox-5.1 + state: latest + - name: Install vim-gtk3 apt: name: vim-gtk3