Support Debian machine using MongoDB official repository for Debian

This commit is contained in:
Guillaume Dedrie 2014-08-25 14:11:43 +02:00
parent 28916916ee
commit d05268e601
2 changed files with 9 additions and 1 deletions

View File

@ -11,5 +11,8 @@ galaxy_info:
- name: Ubuntu
versions:
- all
- name: Debian
versions:
- wheezy
categories:
- database:nosql

View File

@ -3,8 +3,13 @@
- name: Add APT key
apt_key: url=http://docs.mongodb.org/10gen-gpg-key.asc id=7F0CEB10
- name: Add APT repository
- name: Add APT repository (Ubuntu)
apt_repository: repo='deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' update_cache=yes
when: ansible_distribution == 'Ubuntu'
- name: Add APT repository (Debian)
apt_repository: repo='deb http://downloads-distro.mongodb.org/repo/debian-sysvinit dist 10gen' update_cache=yes
when: ansible_distribution == 'Debian'
- name: Install mongodb-org
apt: pkg={{item}}