From 5e18df41792ccd77140a982daf7d3de47fdce0fb Mon Sep 17 00:00:00 2001 From: Chaoyi Zha Date: Fri, 12 Jun 2015 23:56:42 +0000 Subject: [PATCH] Add missing configuration var for mote mappings --- roles/mote/templates/config.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/mote/templates/config.py b/roles/mote/templates/config.py index 4aca977e43..d9ec379629 100644 --- a/roles/mote/templates/config.py +++ b/roles/mote/templates/config.py @@ -49,3 +49,10 @@ use_memcached = False # Use a memcached store for greater performance # JSON cache store location json_cache_location = "/var/tmp/mote/cache.json" + +# Use group/name mappings fetched from GitHub +use_mappings_github = True + +# If use_mappings_github is False, set alternate path +name_mappings_path = "/usr/share/mote/name_mappings.json" +category_mappings_path = "/usr/share/mote/category_mappings.json"