19 lines
361 B
YAML
19 lines
361 B
YAML
---
|
|
# tasks file for nouveau-mesa
|
|
- name: Update apt
|
|
become: yes
|
|
apt:
|
|
update_cache: yes
|
|
|
|
- name: Install nouveau and mesa
|
|
apt:
|
|
state: present
|
|
name:
|
|
- xserver-xorg-video-nouveau
|
|
- mesa-utils
|
|
register: install_driver
|
|
|
|
- name: Reboot after driver install
|
|
reboot:
|
|
when: install_driver.changed and not nvidia_driver_skip_reboot
|