xoxys.mongodb/tasks/install.yml

22 lines
545 B
YAML
Raw Normal View History

2017-07-14 23:05:30 +02:00
---
2017-12-22 12:59:12 +01:00
- block:
- name: Add mongodb repo
2017-12-22 13:29:19 +01:00
yum_repository:
name: mongodb-org-3.4
2017-12-22 12:59:12 +01: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 23:05:30 +02:00
2017-12-22 12:59:12 +01:00
- name: Install mongodb package
package:
2017-12-22 13:29:19 +01:00
name: mongodb-org
2017-12-22 12:59:12 +01:00
state: latest
notify:
- mongod_restart
become: True
become_user: root