From 483f32edb6aa4dce67e128fea92334d45e5e3d81 Mon Sep 17 00:00:00 2001 From: Eduardo Gonzalez Date: Tue, 6 Jun 2017 12:11:22 +0100 Subject: [PATCH] Fix mongodb name in cron.json There is a typo in cron.json making cron to fail when mongodb is enabled. Only affect master. ```MissingRequiredSource: /var/lib/kolla/config_files/logrotate/mongdb.conf file is not found``` Change-Id: I79d41e94ee3361f2b4d831d17b1bb34a1964f580 --- ansible/roles/common/templates/cron.json.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/common/templates/cron.json.j2 b/ansible/roles/common/templates/cron.json.j2 index 5f5a762d95..57bc086d5a 100644 --- a/ansible/roles/common/templates/cron.json.j2 +++ b/ansible/roles/common/templates/cron.json.j2 @@ -31,7 +31,7 @@ ( 'manila', enable_manila ), ( 'mariadb', enable_mariadb ), ( 'mistral', enable_mistral ), - ( 'mongdb', enable_mongodb ), + ( 'mongodb', enable_mongodb ), ( 'murano', enable_murano ), ( 'neutron', enable_neutron ), ( 'nova', enable_nova ),