Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

monit.yml 405B

1234567891011121314151617
  1. - name: Install monit
  2. apt: pkg=monit state=installed
  3. - name: Copy monit master config file into place
  4. copy: src=etc_monit_monitrc dest=/etc/monit/monitrc
  5. - name: Copy monit service config files into place
  6. copy: src=etc_monit_conf.d_${item} dest=/etc/monit/conf.d/${item}
  7. with_items:
  8. - apache2
  9. - dovecot
  10. - mysql
  11. - postfix
  12. - sshd
  13. - tomcat
  14. - znc
  15. notify: restart monit