Advertisement
Guest User

constants.conf

a guest
Apr 12th, 2018
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.02 KB | None | 0 0
  1. /**
  2.  * This file defines global constants which can be used in
  3.  * the other configuration files.
  4.  */
  5.  
  6. /* The directory which contains the plugins from the Monitoring Plugins project. */
  7. const PluginDir = "/usr/lib/nagios/plugins"
  8.  
  9. /* The directory which contains the Manubulon plugins.
  10.  * Check the documentation, chapter "SNMP Manubulon Plugin Check Commands", for details.
  11.  */
  12. const ManubulonPluginDir = "/usr/lib/nagios/plugins"
  13.  
  14. /* The directory which you use to store additional plugins which ITL provides user contributed command definitions for.
  15.  * Check the documentation, chapter "Plugins Contribution", for details.
  16.  */
  17. const PluginContribDir = "/usr/lib/nagios/plugins"
  18.  
  19. /* Our local instance name. By default this is the server's hostname as returned by `hostname --fqdn`.
  20. * This should be the common name from the API certificate.
  21. */
  22. /* Our local zone name. */
  23. const ZoneName = "myIcinga2Master"
  24.  
  25. /* Secret key for remote node tickets */
  26. const TicketSalt = "myTicket"
  27.  
  28.  
  29. const NodeName = "myIcinga2Master"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement