xoxys.mongodb/tasks/config.yml

17 lines
322 B
YAML
Raw Normal View History

2018-07-07 23:20:00 +02:00
---
- block:
- name: Deploy configuration file
template:
src: etc/mongod.conf.j2
dest: /etc/mongod.conf
mode: 0644
notify: __mongod_restart
- name: Make sure mongodb is up and running
2018-07-10 22:56:33 +02:00
service:
2018-07-07 23:20:00 +02:00
name: mongod
state: started
enabled: yes
become: True
become_user: root