Commit 3ec58578 authored by nanahira's avatar nanahira

Merge branch 'master' of git.mycard.moe:mycard/init

parents 42633dff 9df08b4f
Pipeline #1958 passed with stage
in 4 minutes and 24 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