xoxys.mongodb/tasks/install.yml

22 lines
549 B
YAML
Raw Normal View History

2017-07-14 21:05:30 +00:00
---
2017-12-22 11:59:12 +00:00
- block:
- name: Add mongodb repo
yum-repository:
2017-12-22 12:27:23 +00:00
name: "mongodb-org-3.4"
2017-12-22 11:59:12 +00:00
description: MongoDB Repository
baseurl: https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.4/x86_64/
gpgcheck: yes
enabled: yes
gpgkey: https://www.mongodb.org/static/pgp/server-3.4.asc
notify:
- mongod_restart
2017-07-14 21:05:30 +00:00
2017-12-22 11:59:12 +00:00
- name: Install mongodb package
package:
2017-12-22 12:27:23 +00:00
name: "mongodb-org"
2017-12-22 11:59:12 +00:00
state: latest
notify:
- mongod_restart
become: True
become_user: root