mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-12 00:03:17 +02:00
9 lines
285 B
YAML
9 lines
285 B
YAML
---
|
|
|
|
# The module is unavailable in PVE >= 6
|
|
# as it's built in the kernel
|
|
- name: Do not load nf_conntrack_proto_gre for PVE6
|
|
set_fact: pve_mod_to_load={{ pve_mod_to_load | difference(['nf_conntrack_proto_gre']) }}
|
|
when: ansible_distribution_major_version | int >= 10
|
|
tags: pve
|