EvoBSD/roles/forwarding/tasks/main.yml
Jérémy Dubois e29e0e9e62 Ansible-lint and yamllint again
Lot of truthy variables, indentation and trailing spaces
2020-06-01 11:37:15 +02:00

19 lines
289 B
YAML

---
- name: Enable IPv4 forwarding
sysctl:
name: net.inet.ip.forwarding
value: 1
state: present
reload: true
tags:
- net
- name: Enable IPv6 forwarding
sysctl:
name: net.inet6.ip6.forwarding
value: 1
state: present
reload: true
tags:
- net