Fix modprobe module on Flatcar (#10678)
* Fix modprobe module on Flatcar * Add todo about upstream issue reportpull/10641/head
parent
565eab901b
commit
c3b674526d
|
@ -68,11 +68,16 @@
|
|||
changed_when: false
|
||||
check_mode: no
|
||||
|
||||
# TODO: Remove once upstream issue is fixed
|
||||
# https://github.com/ansible-collections/community.general/issues/7717
|
||||
- name: Verify br_netfilter module path exists
|
||||
file:
|
||||
path: /etc/modules-load.d
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
mode: 0755
|
||||
loop:
|
||||
- /etc/modules-load.d
|
||||
- /etc/modprobe.d
|
||||
|
||||
- name: Enable br_netfilter module
|
||||
community.general.modprobe:
|
||||
|
|
Loading…
Reference in New Issue