1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-02-02 09:47:00 +03:00
2018-11-29 15:14:17 +01:00

19 lines
407 B
YAML

---
- name: Set net.ipv4.ip_forward
sysctl:
name: net.ipv4.ip_forward
value: "{{ iptables_ip_forward_enabled | int }}"
state: present
sysctl_file: /etc/sysctl.d/ip_forward.conf
reload: yes
- block:
- include: redhat.yml
when: ansible_os_family == "RedHat"
- include: debian.yml
when: ansible_os_family == "Debian"
when: iptables_manage_persistent
- include: rules.yml