- Correct typo deamonize -> daemonize

This commit is contained in:
Peter Klein (Let's make sense GmbH) 2017-06-22 10:44:14 +02:00
parent 55d428897a
commit c60080acb1
3 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{% set defaults = { {% set defaults = {
'config':{ 'config':{
'deamonize': True, 'daemonize': True,
'verbose_level': 0, 'verbose_level': 0,
'log_file': '/var/log/memcached.log', 'log_file': '/var/log/memcached.log',
'memory_cap': 64, 'memory_cap': 64,
@ -12,7 +12,7 @@
'error_on_mem_full': False, 'error_on_mem_full': False,
'max_core_file_limit': False, 'max_core_file_limit': False,
'slab_size_limit': '1m', 'slab_size_limit': '1m',
} }
} %} } %}
{% set memcached = salt['grains.filter_by']({ {% set memcached = salt['grains.filter_by']({
'Debian':{ 'Debian':{

View File

@ -7,7 +7,7 @@
# Run memcached as a daemon. This command is implied, and is not needed for the # Run memcached as a daemon. This command is implied, and is not needed for the
# daemon to run. See the README.Debian that comes with this package for more # daemon to run. See the README.Debian that comes with this package for more
# information. # information.
{{ '-d' if get_config_item('deamonize') == 'True' else ''}} {{ '-d' if get_config_item('daemonize') == 'True' else ''}}
# Log memcached's output to /var/log/memcached # Log memcached's output to /var/log/memcached
logfile {{ get_config_item('log_file') }} logfile {{ get_config_item('log_file') }}
@ -37,15 +37,15 @@ logfile {{ get_config_item('log_file') }}
-c {{ get_config_item('max_connections') }} -c {{ get_config_item('max_connections') }}
# Lock down all paged memory. Consult with the README and homepage before you do this # Lock down all paged memory. Consult with the README and homepage before you do this
# -k # -k
{{ '-k' if get_config_item('lock_paged_memory') == 'True' else '' }} {{ '-k' if get_config_item('lock_paged_memory') == 'True' else '' }}
# Return error when memory is exhausted (rather than removing items) # Return error when memory is exhausted (rather than removing items)
# -M # -M
{{ '-M' if get_config_item('error_on_mem_full') == 'True' else '' }} {{ '-M' if get_config_item('error_on_mem_full') == 'True' else '' }}
# Maximize core file limit # Maximize core file limit
# -r # -r
{{ '-r' if get_config_item('max_core_file_limit') == 'True' else '' }} {{ '-r' if get_config_item('max_core_file_limit') == 'True' else '' }}
{% if get_config_item('slab_size_limit') != '1m' %} {% if get_config_item('slab_size_limit') != '1m' %}

View File

@ -1,5 +1,5 @@
memcached: memcached:
deamonize: True daemonize: True
verbose_level: 0 verbose_level: 0
memory_cap: 64 memory_cap: 64
port: 11211 port: 11211