mirror of
https://github.com/status-im/ansible-role-mongodb.git
synced 2025-01-22 11:08:52 +00:00
Merge pull request #90 from thiagoalmeidasa/master
Modifying mongod conf template.
This commit is contained in:
commit
37a1d6681b
@ -23,14 +23,17 @@
|
||||
|
||||
- name: Create log dir if missing
|
||||
file: state=directory recurse=yes dest={{ mongodb_systemlog_path|dirname }} owner={{ mongodb_user }} group={{mongodb_user}} mode=0755
|
||||
when: mongodb_systemlog_destination == "file"
|
||||
|
||||
- name: Check than logfile exists
|
||||
stat: path={{ mongodb_systemlog_path }}
|
||||
register: logfile_stat
|
||||
when: mongodb_systemlog_destination == "file"
|
||||
|
||||
- name: Create log if missing
|
||||
file: state=touch dest={{ mongodb_systemlog_path }} owner={{ mongodb_user }} group={{mongodb_user}} mode=0755
|
||||
when: logfile_stat is defined and not logfile_stat.stat.exists
|
||||
when: mongodb_systemlog_destination == "file"
|
||||
|
||||
- name: Ensure dbpath directory
|
||||
file:
|
||||
|
@ -53,8 +53,10 @@ storage:
|
||||
|
||||
systemLog:
|
||||
destination: {{ mongodb_systemlog_destination }}
|
||||
{% if mongodb_systemlog_destination == 'file' -%}
|
||||
logAppend: {{ mongodb_systemlog_logappend | to_nice_json }}
|
||||
path: {{ mongodb_systemlog_path }}
|
||||
{% endif %}
|
||||
|
||||
{% if mongodb_set_parameters -%}
|
||||
setParameter:
|
||||
|
@ -41,5 +41,7 @@ storage:
|
||||
|
||||
systemLog:
|
||||
destination: {{ mongodb_systemlog_destination }}
|
||||
{% if mongodb_systemlog_destination == 'file' -%}
|
||||
logAppend: {{ mongodb_systemlog_logappend | to_nice_json }}
|
||||
path: {{ mongodb_systemlog_path }}
|
||||
{% endif -%}
|
||||
|
Loading…
x
Reference in New Issue
Block a user