2015-08-14 13:26:04 +00:00
|
|
|
---
|
|
|
|
- name: Ensuring config directory exists
|
|
|
|
file:
|
|
|
|
path: "{{ node_config_directory }}/memcached/"
|
|
|
|
state: "directory"
|
|
|
|
recurse: "yes"
|
|
|
|
|
2015-09-25 10:16:59 +00:00
|
|
|
- name: Copying over memcached JSON configuration file
|
2015-08-14 13:26:04 +00:00
|
|
|
template:
|
2015-09-25 10:16:59 +00:00
|
|
|
src: "memcached.json.j2"
|
|
|
|
dest: "{{ node_config_directory }}/memcached/config.json"
|