Merge pull request #18 from letsmakesense/master

Correct typo deamonize -> daemonize
This commit is contained in:
Niels Abspoel 2017-06-22 16:42:37 +02:00 committed by GitHub
commit 4699eed7ce
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