weitere Aenderungen

This commit is contained in:
2021-02-25 09:37:42 +01:00
parent db70a6c417
commit 17b4ed6ef6
50 changed files with 946 additions and 4 deletions

View File

@@ -0,0 +1,32 @@
# As of May 2, 2020; Virtualbox is available in backports, but is an old version.
# The following will add the official Virtualbox repo
- name: software | virtualbox | install apt key (debian)
tags: virtualbox,repositories,virtualbox
apt_key:
url: https://www.virtualbox.org/download/oracle_vbox_2016.asc
state: present
when:
- ansible_distribution == "Debian"
- virtualbox is defined
- virtualbox == true
- name: software | virtualbox | install repository (debian)
tags: virtualbox,repositories,virtualbox
apt_repository:
repo: deb https://download.virtualbox.org/virtualbox/debian buster contrib
state: present
filename: virtualbox
register: virtualbox_repo_debian
when:
- ansible_distribution == "Debian"
- virtualbox is defined
- virtualbox == true
- name: software | virtualbox | install package
tags: virtualbox
package:
name: "{{ virtualbox_package }}"
when:
- virtualbox is defined
- virtualbox == true