ansible-role-mongodb/tasks/mongodb.yml

10 lines
168 B
YAML
Raw Normal View History

2014-06-04 15:03:58 +00:00
---
- include: install.deb.yml
when: ansible_os_family == 'Debian'
2014-06-09 08:59:15 +00:00
- name: Ensure mongodb is started
2014-07-30 17:32:46 +00:00
service: name=mongod state=started
2014-06-09 08:59:15 +00:00
2014-06-04 15:03:58 +00:00
- include: configure.yml