ansible-role-mongodb/tasks/configure.yml

19 lines
577 B
YAML
Raw Normal View History

2014-06-04 15:03:58 +00:00
---
2014-06-04 15:09:28 +00:00
- name: Configure mongodb
2014-07-30 17:32:46 +00:00
template: src=mongod.conf.j2 dest=/etc/mongod.conf owner=root group=root mode=0644
2014-12-11 19:09:31 +00:00
notify: mongodb restart
2014-07-10 16:07:35 +00:00
- name: Configure log rotation
template: src=logrotate.conf.j2 dest=/etc/logrotate.d/mongodb.conf
when: mongodb_logrotate
2014-12-11 19:09:31 +00:00
- name: Create mongodb user
user: name=mongodb group=mongodb
- name: Configure database directory
file: state=directory path={{ mongodb_conf_dbpath }} owner=mongodb group=mongodb mode=0755
- name: Configure logs
file: state=file path={{ mongodb_conf_logpath }} owner=mongodb group=mongodb mode=0644