mirror of
https://github.com/roles-ansible/ansible_role_rtl_nic_firmware.git
synced 2024-08-16 13:39:50 +02:00
21 lines
566 B
YAML
21 lines
566 B
YAML
---
|
|
- name: "create {{ rtl_nic__path_prefix }}/{{ rtl_nic__path_suffix }}"
|
|
become: true
|
|
ansible.builtin.file:
|
|
path: "{{ rtl_nic__path_prefix }}/{{ item }}"
|
|
state: directory
|
|
mode: 0755
|
|
owner: root
|
|
group: root
|
|
with_items: "{{ rtl_nic__path_suffix }}"
|
|
|
|
- name: download rtl_nic firmware
|
|
become: true
|
|
ansible.builtin.get_url:
|
|
url: "{{ rtl_nic__download_prefix }}/{{ item }}"
|
|
dest: "{{ rtl_nic__path_prefix }}/{{ item }}"
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
with_items: "{{ rtl_nic__firmware }}"
|
|
notify: update initrd
|