Commit cffe50f4 by Fred Smith

Merge pull request #1269 from edx/derf/mongo_deployment_fixes

Some fixes required for mongodb to be deployed
parents 37271a41 70ae2b47
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
- name: copy mongodb key file - name: copy mongodb key file
copy: > copy: >
src={{ secure_dir }}/files/mongo_key content="{{ MONGO_CLUSTER_KEY }}"
dest={{ mongo_key_file }} dest={{ mongo_key_file }}
mode=0600 mode=0600
owner=mongodb owner=mongodb
......
...@@ -13,6 +13,11 @@ ...@@ -13,6 +13,11 @@
# this cruft can be removed in ansible 1.6, which can have apt install local deb files # this cruft can be removed in ansible 1.6, which can have apt install local deb files
- name: install required packages
apt: name={{ item }} state=present
with_items:
- gdebi
- name: download mongo mms agent - name: download mongo mms agent
get_url: > get_url: >
url="{{ mms_agent_url }}" url="{{ mms_agent_url }}"
......
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