35 lines
795 B
YAML
35 lines
795 B
YAML
|
---
|
||
|
- name: dkms add
|
||
|
become: yes
|
||
|
ansible.builtin.shell: dkms add -m r8125 -v "{{ r8152_version }}"
|
||
|
args:
|
||
|
chdir: "{{ r8152_src_dir }}"
|
||
|
|
||
|
- name: dkms build
|
||
|
become: yes
|
||
|
ansible.builtin.shell: dkms build -m r8125 -v "{{ r8152_version }}"
|
||
|
args:
|
||
|
chdir: "{{ r8152_src_dir }}"
|
||
|
|
||
|
- name: dkms install
|
||
|
become: yes
|
||
|
ansible.builtin.shell: dkms install -m r8125 -v "{{ r8152_version }}"
|
||
|
args:
|
||
|
chdir: "{{ r8152_src_dir }}"
|
||
|
|
||
|
- name: depmod -a
|
||
|
become: yes
|
||
|
ansible.builtin.shell: depmod -a
|
||
|
args:
|
||
|
chdir: "{{ r8152_src_dir }}"
|
||
|
|
||
|
- name: update initramfs
|
||
|
become: yes
|
||
|
ansible.builtin.shell: update-initramfs -u
|
||
|
args:
|
||
|
chdir: "{{ r8152_src_dir }}"
|
||
|
|
||
|
- name: reboot
|
||
|
ansible.builtin.reboot:
|
||
|
reboot_timeout: 120
|