Sha256: 284cfdd15a8591252d59e285d5f27c8f3203f82613edfb1cab955420f4b7cf0b

Contents?: true

Size: 772 Bytes

Versions: 3

Compression:

Stored size: 772 Bytes

Contents

---
  # https://bugs.launchpad.net/ubuntu/+source/monit/+bug/1786910
  - name: Downgrade monit
    apt:
      name: monit=1:5.16-2
      force: true
      state: present
    become: true
    tags:
      - monit

  - name: Pin monit so it doesn't update again
    dpkg_selections:
      name: monit
      selection: hold
    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

3 entries across 3 versions & 1 rubygems

Version Path
subspace-1.0.4 ansible/roles/monit/tasks/main.yml
subspace-1.0.3 ansible/roles/monit/tasks/main.yml
subspace-1.0.2 ansible/roles/monit/tasks/main.yml