Merge pull request #58 from danielwhite/configure-dbpath-owner

Ensure dbpath directory has configurable owner
This commit is contained in:
Sergei Antipov 2016-04-27 18:45:36 +06:00
commit 48fcd565fe
2 changed files with 7 additions and 3 deletions

View File

@ -32,6 +32,13 @@
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
- name: Ensure dbpath directory
file:
path: "{{ mongodb_storage_dbpath }}"
state: directory
owner: "{{ mongodb_user }}"
recurse: yes
- name: Configure mongodb
template: src=mongod.conf.j2 dest=/etc/mongod.conf backup=yes owner=root group=root mode=0644
register: config_result

View File

@ -44,9 +44,6 @@
- "{{mongodb_package}}"
- numactl
- name: Ensure dbpath directory
file: path={{mongodb_storage_dbpath}} state=directory owner=mongodb recurse=yes
- name: reload systemd
shell: systemctl daemon-reload
changed_when: false