constants.conf 1.0 KB

123456789101112131415161718192021222324252627282930
  1. /**
  2. * This file defines global constants which can be used in
  3. * the other configuration files. (Salt managed)
  4. */
  5. /* The directory which contains the plugins from the Monitoring Plugins project. */
  6. const PluginDir = "/usr/lib/nagios/plugins"
  7. /* The directory which contains the Manubulon plugins.
  8. * Check the documentation, chapter "SNMP Manubulon Plugin Check Commands", for details.
  9. */
  10. const ManubulonPluginDir = "/usr/lib/nagios/plugins"
  11. /* The directory which you use to store additional plugins which ITL provides user contributed command definitions for.
  12. * Check the documentation, chapter "Plugins Contribution", for details.
  13. */
  14. const PluginContribDir = "/usr/lib/nagios/plugins"
  15. /* Our local instance name. By default this is the server's hostname as returned by `hostname --fqdn`.
  16. * This should be the common name from the API certificate.
  17. */
  18. //const NodeName = "localhost"
  19. /* Our local zone name. */
  20. const ZoneName = NodeName
  21. /* Secret key for remote node tickets */
  22. const TicketSalt = ""
  23. const FFHOPluginDir = "/usr/local/share/monitoring-plugins"