- 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 = {
'config':{
'deamonize': True,
'daemonize': True,
'verbose_level': 0,
'log_file': '/var/log/memcached.log',
'memory_cap': 64,

View File

@ -7,7 +7,7 @@
# 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
# 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
logfile {{ get_config_item('log_file') }}

View File

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