Commit c9f7ed75 by nadeemshahzad

update role for 16.04

parent 0a0667a0
......@@ -2,6 +2,7 @@
base_url: "https://cloud.mongodb.com/download/agent"
pkg_arch: "amd64"
pkg_format: "deb"
os_version: "ubuntu1604"
agents:
- agent: mongodb-mms-monitoring-agent
......
......@@ -10,18 +10,26 @@
msg: "MMSAPIKEY is required"
when: MMSAPIKEY is not defined
- name: download mongo mms agent
- name: download trusty mongo mms agent
get_url:
url: "{{ base_url }}/{{ item.dir }}/{{ item.agent }}_{{ item.version }}_{{ pkg_arch }}.{{ pkg_format }}"
dest: "/tmp/{{ item.agent }}-{{ item.version }}.{{ pkg_format }}"
register: download_mms_deb
with_items: "{{ agents }}"
when: ansible_distribution_release == 'trusty'
- name: download xenial mongo mms agent
get_url:
url: "{{ base_url }}/{{ item.dir }}/{{ item.agent }}_{{ item.version }}_{{ pkg_arch }}.{{ os_version }}.{{ pkg_format }}"
dest: "/tmp/{{ item.agent }}-{{ item.version }}.{{ pkg_format }}"
register: download_mms_deb
with_items: "{{ agents }}"
when: ansible_distribution_release == 'xenial'
- name: install mongo mms agent
apt:
deb: "/tmp/{{ item.agent }}-{{ item.version }}.deb"
when: download_mms_deb.changed
notify: restart mms
with_items: "{{ agents }}"
- name: add group ID to monitoring-agent.config
......@@ -29,7 +37,6 @@
dest: "{{ item.config }}"
regexp: "^mmsGroupId="
line: "mmsGroupId={{ MMSGROUPID }}"
notify: restart mms
with_items: "{{ agents }}"
- name: add key to monitoring-agent.config
......@@ -37,11 +44,19 @@
dest: "{{ item.config }}"
regexp: "^mmsApiKey="
line: "mmsApiKey={{ MMSAPIKEY }}"
notify: restart mms
with_items: "{{ agents }}"
- name: start mms service
- name: start mms service trusty
service:
name: "{{ item.agent }}"
state: started
with_items: "{{ agents }}"
when: ansible_distribution_release == 'trusty'
- name: start mms service xenial
systemd:
name: "{{ item.agent }}"
state: started
with_items: "{{ agents }}"
when: ansible_distribution_release == 'xenial'
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