Sha256: 39f7bb2b4330b5f589252deade8490b8e0f48b480ba680852272383970659fb1

Contents?: true

Size: 523 Bytes

Versions: 3

Compression:

Stored size: 523 Bytes

Contents

---
  - name: Add New Relic apt repo
    apt_repository:
      repo: deb http://apt.newrelic.com/debian/ newrelic non-free
      state: present

  - name: Add New Relic apt key
    apt_key:
      url: https://download.newrelic.com/548C16BF.gpg
      state: present

  - name: Install New Relic server agent
    apt:
      pkg: newrelic-sysmond
      state: present
      update_cache: true
      cache_valid_time: 86400

  - shell: "nrsysmond-config --set license_key={{newrelic_licence}}"
    notify: start newrelic agent

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
subspace-0.1.3 ansible/roles/newrelic/tasks/main.yml
subspace-0.1.2 ansible/roles/newrelic/tasks/main.yml
subspace-0.1.1 ansible/roles/newrelic/tasks/main.yml