library/roles/linux-kernel-sysctl: Set no default values other than ipv6.

This commit is contained in:
Andrea Dell'Amico 2016-10-11 17:59:03 +02:00
parent fb49a65871
commit e415e30c00
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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' ]