16 lines
612 B
YAML
16 lines
612 B
YAML
---
|
|
# file roles/autoinstall-ubuntu-drivers/tasks/main.yml
|
|
|
|
- name: autoinstall ubuntu-drivers-common
|
|
block:
|
|
- name: apt | install ubuntu-drivers-common
|
|
apt:
|
|
name: ubuntu-drivers-common
|
|
state: present
|
|
|
|
- name: use ubuntu-drivers to install additional drivers automatically
|
|
command: ubuntu-drivers --package-list /etc/yavdr/autoinstalled autoinstall
|
|
when: (ansible_virtualization_type != "virtualbox" and ansible_virtualization_role != "guest")
|
|
# ubuntu-drivers-common tries to autoinstall
|
|
# conflicting packages for virtualbox in Ubuntu 16.04 and 18.04 :(
|