- Correct typo deamonize -> daemonize
This commit is contained in:
parent
55d428897a
commit
c60080acb1
@ -1,6 +1,6 @@
|
||||
{% set defaults = {
|
||||
'config':{
|
||||
'deamonize': True,
|
||||
'daemonize': True,
|
||||
'verbose_level': 0,
|
||||
'log_file': '/var/log/memcached.log',
|
||||
'memory_cap': 64,
|
||||
|
@ -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') }}
|
||||
|
@ -1,5 +1,5 @@
|
||||
memcached:
|
||||
deamonize: True
|
||||
daemonize: True
|
||||
verbose_level: 0
|
||||
memory_cap: 64
|
||||
port: 11211
|
||||
|
Loading…
Reference in New Issue
Block a user