2017-06-20 16:38:38 +02:00
|
|
|
---
|
|
|
|
# file roles/autoinstall-ubuntu-drivers/tasks/main.yml
|
2017-06-20 15:09:15 +02:00
|
|
|
|
2017-11-22 10:09:51 +01:00
|
|
|
- name: autoinstall ubuntu-drivers-common
|
|
|
|
block:
|
|
|
|
- name: apt | install ubuntu-drivers-common
|
|
|
|
apt:
|
|
|
|
name: ubuntu-drivers-common
|
|
|
|
state: present
|
2017-06-20 15:09:15 +02:00
|
|
|
|
2017-11-22 10:56:21 +01:00
|
|
|
- name: use ubuntu-drivers to install additional drivers automatically
|
2017-11-22 10:09:51 +01:00
|
|
|
command: ubuntu-drivers --package-list /etc/yavdr/autoinstalled autoinstall
|
|
|
|
when:
|
2017-11-22 10:16:56 +01:00
|
|
|
- ansible_virtualization_type != "virtualbox"
|
|
|
|
- ansible_virtualization_role != "guest"
|
2017-11-22 10:09:51 +01:00
|
|
|
- ansible_distribution == "Ubuntu"
|
|
|
|
- ansible_distribution_version != "16.04" # ubuntu-drivers-common tries to autoinstall
|
|
|
|
# conflicting packages for virtualbox :(
|