No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

monit.yml 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. - name: Add monitoring vhost to apache
  2. copy: src=etc_apache2_sites-available_00-status.conf dest=/etc/apache2/sites-available/00-status.conf
  3. - name: Enable the status vhost
  4. command: a2ensite 00-status.conf creates=/etc/apache2/sites-enabled/00-status.conf
  5. notify: restart apache
  6. - name: Install monit
  7. apt:
  8. name: monit
  9. state: present
  10. tags:
  11. - dependencies
  12. - name: Copy monit master config file into place
  13. template: src=etc_monit_monitrc.j2 dest=/etc/monit/monitrc
  14. notify: restart monit
  15. - name: Determine if ZNC is installed
  16. stat: path=/usr/lib/znc/configs/znc.conf
  17. register: znc_config_file
  18. - name: Determine if XMPP is installed
  19. stat: path=/etc/prosody/prosody.cfg.lua
  20. register: prosody_config_file
  21. - name: Determine if Fathom is installed
  22. stat: path=/usr/local/bin/fathom
  23. register: fathom_config_file
  24. - name: Determine if Redis is installed
  25. stat: path=/etc/redis/redis.conf
  26. register: redis_config_file
  27. - name: Determine if RSpamD is installed
  28. stat: path=/etc/rspamd/rspamd.conf
  29. register: rspamd_config_file
  30. - name: Determine if gitea is installed
  31. stat: path=/etc/gitea/app.ini
  32. register: gitea_config_file
  33. - name: Determine if Synapse is installed
  34. stat: path=/etc/matrix-synapse/homeserver.yaml
  35. register: synapse_config_file
  36. - name: Copy ZNC monit service config files into place
  37. copy: src=etc_monit_conf.d_znc dest=/etc/monit/conf.d/znc
  38. notify: restart monit
  39. when: znc_config_file.stat.exists == True
  40. - name: Copy XMPP monit service config files into place
  41. copy: src=etc_monit_conf.d_prosody dest=/etc/monit/conf.d/prosody
  42. notify: restart monit
  43. when: prosody_config_file.stat.exists == True
  44. - name: Copy Fathom monit service config files into place
  45. copy: src=etc_monit_conf.d_fathom dest=/etc/monit/conf.d/fathom
  46. notify: restart monit
  47. when: fathom_config_file.stat.exists == True
  48. - name: Copy Redis monit service config files into place
  49. copy: src=etc_monit_conf.d_redis dest=/etc/monit/conf.d/redis
  50. notify: restart monit
  51. when: redis_config_file.stat.exists == True
  52. - name: Copy RSpamD monit service config files into place
  53. copy: src=etc_monit_conf.d_rspamd dest=/etc/monit/conf.d/rspamd
  54. notify: restart monit
  55. when: rspamd_config_file.stat.exists == True
  56. - name: Copy gitea monit service config files into place
  57. copy: src=etc_monit_conf.d_gitea dest=/etc/monit/conf.d/gitea
  58. notify: restart monit
  59. when: gitea_config_file.stat.exists == True
  60. - name: Copy Synapse monit service config files into place
  61. copy: src=etc_monit_conf.d_matrix dest=/etc/monit/conf.d/matrix
  62. notify: restart monit
  63. when: synapse_config_file.stat.exists == True
  64. - name: Copy monit service config files into place
  65. copy: src=etc_monit_conf.d_{{ item }} dest=/etc/monit/conf.d/{{ item }}
  66. with_items:
  67. - apache2
  68. - dovecot
  69. - pgsql
  70. - postfix
  71. - sshd
  72. - tomcat
  73. notify: restart monit
  74. - name: Create the Apache monit sites config files
  75. template:
  76. src=etc_apache2_sites-available_monit.j2
  77. dest=/etc/apache2/sites-available/monit_{{ item.name }}.conf
  78. owner=root
  79. group=root
  80. with_items: "{{ virtual_domains }}"
  81. when: monit_page_public == 1
  82. - name: Enable Apache sites (creates new sites-enabled symlinks)
  83. command: a2ensite monit_{{ item }}.conf creates=/etc/apache2/sites-enabled/monit_{{ item }}.conf
  84. notify: restart apache
  85. with_items: "{{ virtual_domains | json_query('[*].name') }}"
  86. when: monit_page_public == 1