Update mote role, removing memcached dependency in favor of JSON store

This commit is contained in:
Chaoyi Zha 2015-06-11 23:23:37 +00:00
parent 6642890bc4
commit 59924d35a4
2 changed files with 7 additions and 2 deletions

View file

@ -21,7 +21,6 @@
- config
notify:
- restart apache
- restart memcached
- name: apply selinux type to static files
file: >

View file

@ -29,11 +29,17 @@ Development Configuration
enable_debug = True
app_port = 5000
app_host = "127.0.0.1"
'''
General Configuration
'''
app_host = "127.0.0.1"
admin_groups = ["sysadmin-mote"]
memcached_ip = "127.0.0.1:11211"
# memcached must be installed for this feature
use_memcached = False # Use a memcached store for greater performance
# JSON cache store location
json_cache_location = "/tmp/mote/cache.json"