Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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