Fix configuration error on missing NodeName.

Fixes #6393
This commit is contained in:
Michael Friedrich 2014-06-03 14:54:21 +02:00
parent 5d10558342
commit 72ef0d31fd
2 changed files with 9 additions and 5 deletions

View File

@ -157,7 +157,10 @@ The `constants.conf` configuration file can be used to define global constants:
/* The directory which contains the plugins from the Monitoring Plugins project. */
const PluginDir = "/usr/lib/nagios/plugins"
/* Our local instance name. This should be the common name from the API certificate */
/* Our local instance name. This should be the common name
* from the API certificate. Not required for a single
* instance setup.
*/
const NodeName = "localhost"
/* Our local zone name. */

View File

@ -6,10 +6,11 @@
/* The directory which contains the plugins from the Monitoring Plugins project. */
const PluginDir = "/usr/lib/nagios/plugins"
/* Our local instance name. By default this is the server's hostname as returned by `hostname --fqdn`.
* This should be the common name from the API certificate.
*/
//const NodeName = "localhost"
/* Our local instance name. This should be the common name
* from the API certificate. Not required for a single
* instance setup.
*/
const NodeName = "localhost"
/* Our local zone name. */
const ZoneName = NodeName