11 lines
324 B
YAML
11 lines
324 B
YAML
- name: install needed packages
|
|
package: name={{ item }} state=present
|
|
with_items:
|
|
- mongodb-server
|
|
tags: mongodb
|
|
|
|
# mongod is the single daemon. mongos is a sharded cluster router,
|
|
# but just plain mongod is good enough for now
|
|
- name: start mongodb
|
|
service: name=mongod state=started enabled=yes
|
|
tags: mongodb
|