mirror of
https://github.com/Icinga/icinga2.git
synced 2026-06-09 08:42:59 -04:00
Revert "Fix configuration error on missing NodeName."
This reverts commit 72ef0d31fd.
Refs #6393
This commit is contained in:
parent
1d9f7fb045
commit
63df43eea2
2 changed files with 5 additions and 9 deletions
|
|
@ -157,10 +157,7 @@ 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. Not required for a single
|
||||
* instance setup.
|
||||
*/
|
||||
/* Our local instance name. This should be the common name from the API certificate */
|
||||
const NodeName = "localhost"
|
||||
|
||||
/* Our local zone name. */
|
||||
|
|
|
|||
|
|
@ -6,11 +6,10 @@
|
|||
/* 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. Not required for a single
|
||||
* instance setup.
|
||||
*/
|
||||
const NodeName = "localhost"
|
||||
/* 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 zone name. */
|
||||
const ZoneName = NodeName
|
||||
|
|
|
|||
Loading…
Reference in a new issue