Supports setParameter configuration

This commit is contained in:
Emilien Escalle 2018-01-09 12:39:07 +01:00 committed by GitHub
parent 54a2e1ea3b
commit c4b37649ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -55,3 +55,10 @@ systemLog:
destination: {{ mongodb_systemlog_destination }}
logAppend: {{ mongodb_systemlog_logappend | to_nice_json }}
path: {{ mongodb_systemlog_path }}
{% if mongodb_set_parameters -%}
setParameter:
{% for key, value in mongodb_set_parameters.items() -%}
{{ key }}: {{ value }}
{% endfor -%}
{% endif %}