Ansible role to configure sysctl settings.
Building and improving this Ansible role have been sponsored by my current and previous employers like Cloudpunks GmbH and Proact Deutschland GmbH.
- Minimum Ansible version:
2.10
List of global sysctl settings
sysctl_defaults: []
sysctl_defaults:
- name: net.ipv4.ip_forward
value: 1
- name: net.ipv6.conf.all.forwarding
value: 1
ignoreerrors: True
reload: True
sysctl_file: /etc/sysctl.conf
sysctl_set: True
- name: kernel.panic
state: absent
List of extra sysctl settings
sysctl_extra: []
sysctl_extra:
- name: net.ipv4.ip_forward
value: 1
- name: net.ipv6.conf.all.forwarding
value: 1
ignoreerrors: True
reload: True
sysctl_file: /etc/sysctl.conf
sysctl_set: True
- name: kernel.panic
state: absent
sysctl
Apache-2.0