Commit a49a6965 by Dan Powell

Download MongoDB signing key from keyserver

parent a827ef97
......@@ -41,6 +41,7 @@ ad_hoc_reporting_pip_pkgs:
# for running ansible mysql
- mysql-python
MONGODB_APT_KEY: "http://docs.mongodb.org/10gen-gpg-key.asc"
MONGODB_APT_KEY: "7F0CEB10"
MONGODB_APT_KEYSERVER: "keyserver.ubuntu.com"
MONGODB_REPO: "deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen"
mongo_version: 3.0.7
......@@ -30,8 +30,8 @@
- name: add the mongodb signing key
apt_key:
id: 7F0CEB10
url: "{{ MONGODB_APT_KEY }}"
id: "{{ MONGODB_APT_KEY }}"
keyserver: "{{ MONGODB_APT_KEYSERVER }}"
state: present
tags:
- install:system-requirements
......
......@@ -11,7 +11,8 @@ mongo_data_dir: "{{ COMMON_DATA_DIR }}/mongo"
mongo_log_dir: "{{ COMMON_LOG_DIR }}/mongo"
mongo_user: mongodb
MONGODB_APT_KEY: "http://docs.mongodb.org/10gen-gpg-key.asc"
MONGODB_APT_KEY: "7F0CEB10"
MONGODB_APT_KEYSERVER: "keyserver.ubuntu.com"
MONGODB_REPO: "deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen"
# Vars Meant to be overridden
......
......@@ -21,8 +21,8 @@
- name: add the mongodb signing key
apt_key: >
id=7F0CEB10
url={{ MONGODB_APT_KEY }}
id={{ MONGODB_APT_KEY }}
keyserver={{ MONGODB_APT_KEYSERVER }}
state=present
- name: add the mongodb repo to the sources list
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment