Sha256: 9b1083a6ddfc1a7bfaee92fdd5af654429aa2bb22654c341fc92f882d192f8dc

Contents?: true

Size: 555 Bytes

Versions: 2

Compression:

Stored size: 555 Bytes

Contents

---
  - name: Install monit
    apt:
      name: monit=1:5.16-2
      state: present
      force: true
    become: true
    tags:
      - monit

  - name: Copy sudoers file so that deploy can use monit without entering password.
    copy:
      src: sudoers-monit
      dest: /etc/sudoers.d/monit
    become: true
    tags:
      - monit

  - name: Copy monit config to enable http from localhost
    copy:
      src: monit-http.conf
      dest: /etc/monit/conf.d/monit-http.conf
    become: true
    notify:
      - restart_monit
    tags:
      - monit

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
subspace-1.0.1 ansible/roles/monit/tasks/main.yml
subspace-1.0.0 ansible/roles/monit/tasks/main.yml