9 lines
300 B
YAML
9 lines
300 B
YAML
|
|
---
|
||
|
|
- name: Install the libvirt bridge nftables drop-in (virbr-boma input allow)
|
||
|
|
ansible.builtin.template:
|
||
|
|
src: 10-libvirt-boma.nft.j2
|
||
|
|
dest: "{{ integration_test__nftables_dropin_dir }}/10-libvirt-boma.nft"
|
||
|
|
mode: "0644"
|
||
|
|
notify: "integration_test | reload nftables"
|
||
|
|
tags: [firewall]
|