default.j2 794 B

12345678910111213141516171819202122232425262728293031
  1. {% if ansible_controlled is defined and ansible_controlled != "" %}
  2. #
  3. # {{ ansible_controlled }}
  4. #
  5. {% endif %}
  6. # Defaults for mon initscript
  7. # Created by Dario Minnucci <midget@debian.org>
  8. # Master system-wide mon switch.
  9. # The initscript will not run if ENABLED is set·
  10. # to values other than: "yes", "true" or "1".
  11. ENABLED="yes"
  12. # Configuration file
  13. CONFIGFILE="/etc/mon/mon.cf"
  14. # Auth file
  15. #AUTHFILE="/etc/mon/auth.cf"
  16. # Base configuration directory
  17. CFBASEDIR="/etc/mon"
  18. # Alerts directory
  19. ALERTSDIR="/usr/lib/mon/alert.d"
  20. # Monitors directory
  21. MONITORSDIR="/etc/mon/mon.d"
  22. # State directory
  23. STATEDIR="/var/lib/mon"
  24. # Logging directory
  25. LOGDIR="/var/log/mon"
  26. # Deamon options
  27. DAEMON_OPTS="-B ${CFBASEDIR} -a ${ALERTSDIR} -s ${MONITORSDIR} -D ${STATEDIR} -L ${LOGDIR} -f -c ${CONFIGFILE}"