mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-27 20:12:54 +08:00
12 lines
324 B
YAML
12 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
|