26 lines
852 B
YAML
26 lines
852 B
YAML
---
|
|
- name: Remove disturbing NetworkManager connection
|
|
ansible.builtin.include_tasks:
|
|
file: "{{ taskfile }}"
|
|
loop_control:
|
|
loop_var: taskfile
|
|
loop:
|
|
- bookworm.yml
|
|
- cleanup.yml
|
|
when: ansible_distribution_release == "bookworm"
|
|
|
|
- name: Set chromium gl-flags fixing AMD graphic issues
|
|
ansible.builtin.copy:
|
|
dest: /etc/chromium.d/fvs
|
|
content: |
|
|
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --use-gl=desktop"
|
|
when: ansible_board_vendor == "LENOVO" and
|
|
(ansible_board_name == "312D" or ansible_board_name == "312A")
|
|
|
|
- name: Fix 8086:4909 external graphics card
|
|
ansible.builtin.replace:
|
|
dest: "/etc/default/grub"
|
|
regexp: 'GRUB_CMDLINE_LINUX=""$'
|
|
replace: 'GRUB_CMDLINE_LINUX="i915.force_probe=4909"'
|
|
notify: Run update-grub
|
|
when: ansible_board_vendor == "LENOVO" and ansible_board_name == "32CB"
|