Commit 9df08b4f authored by 神楽坂玲奈's avatar 神楽坂玲奈

b43

parent 2b99f9e0
Pipeline #1894 passed with stage
in 4 minutes and 5 seconds
......@@ -38,6 +38,16 @@
apt:
name: r8168-dkms
when: check_rtl_result.rc == 0 and ansible_distribution_release == 'sid'
- name: check b43
shell: 'lspci | grep BCM4322'
register: check_b43_result
changed_when: false
failed_when: 'check_b43_result.rc > 1'
- name: install b43 driver
become: true
apt:
name: firmware-b43-installer
when: check_b43_result.rc == 0
- name: remove wireguard-dkms
become: true
apt:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment