Sha256: 553386b6ae68542e3cfbc39b1ebadc27532fd08c89b4fa959eceb5f8d9bdafea

Contents?: true

Size: 434 Bytes

Versions: 2

Compression:

Stored size: 434 Bytes

Contents

---
  - name: Install monit
    apt:
      name: monit
      state: present
    sudo: true

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
subspace-0.3.0 ansible/roles/monit/tasks/main.yml
subspace-0.2.1 ansible/roles/monit/tasks/main.yml