forked from ISTI-ansible-roles/ansible-roles
library/roles/linux-kernel-sysctl: Set no default values other than ipv6.
This commit is contained in:
parent
fb49a65871
commit
e415e30c00
|
@ -4,8 +4,8 @@ sysctl_opts_reload: yes
|
|||
sysctl_custom_file_state: present
|
||||
|
||||
# Only name and value are mandatory. The others have defaults
|
||||
systemctl_custom_options:
|
||||
- { name: 'net.nf_conntrack_max', value: '32768', sysctlfile: '{{ sysctl_custom_file }}', sysctl_reload: '{{ sysctl_opts_reload }}', sysctlfile_state: '{{ sysctl_custom_file_state }}' }
|
||||
#systemctl_custom_options:
|
||||
# - { name: 'net.nf_conntrack_max', value: '32768', sysctlfile: '{{ sysctl_custom_file }}', sysctl_reload: '{{ sysctl_opts_reload }}', sysctlfile_state: '{{ sysctl_custom_file_state }}' }
|
||||
|
||||
disable_ipv6: True
|
||||
ipv6_sysctl_value: 1
|
||||
|
|
|
@ -21,6 +21,6 @@
|
|||
|
||||
- name: Set the custom sysctl values
|
||||
sysctl: name={{ item.name }} value={{ item.value }} sysctl_file={{ item.sysctlfile | default ('/etc/sysctl.d/90-custom-values.conf') }} reload={{ item.sysctl_reload | default('yes') }} state={{ item.sysctlfile_state | default('present') }}
|
||||
with_items: '{{ systemctl_custom_options }}'
|
||||
with_items: '{{ systemctl_custom_options | default(omit) }}'
|
||||
|
||||
tags: [ 'sysctl', 'kernel' ]
|
||||
|
|
Loading…
Reference in New Issue